Recyclerview прокрутка другого макета в Android - PullRequest
0 голосов
/ 12 июня 2018
<?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 для прокрутки.Кто-нибудь может подсказать, как этого добиться?

1 Ответ

0 голосов
/ 12 июня 2018

Замените ваш макет ниже XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">


<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:layout_below="@+id/txt_search" />

<android.support.v7.widget.RecyclerView
    android:id="@+id/rv_interest_list"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/et_interest_search"
    android:nestedScrollingEnabled="false" />


<ImageView
    android:id="@+id/fab_submit_interest"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentEnd="true"
    android:background="@drawable/next_arrow" />
 </RelativeLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...