2

我面临一个问题。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"
    />

4

0 回答 0