問題に直面しています。recyclerview にはデータがありますが、その上の edittext をクリックしてキーボードを開いたときにのみデータが取り込まれます。私を案内してください。ビューに何か問題があると思います。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/friends"
android:focusableInTouchMode="true">
<AutoCompleteTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/autoCompleteTextView"
android:hint="Search"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/list_friends"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>