I am facing an issue. The recyclerview is having data but it is populated only when the edittext above that is clicked and keyboard is opened. Please guide me. I think something is wrong with views.
<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"
/>