<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/app_bg"
android:isScrollContainer="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:nestedScrollingEnabled="false">
<TextView
android:id="@+id/txt_search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="abcd" />
<EditText
android:id="@+id/et_interest_search"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_interest_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false"/>
</LinearLayout>
<ImageView
android:id="@+id/fab_submit_interest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:background="@drawable/next_arrow" />
</android.support.design.widget.CoordinatorLayout>
Привет, ребята, у меня есть код, как показано выше.Я не хочу прокручивать весь макет.Я только хочу recyclerview
для прокрутки.Кто-нибудь может подсказать, как этого добиться?