我有一个关于Recyclerview使用的问题。当我在nestedscrollview中添加一个recyclerview时,它会扩展,但是当在nestedscrollview中添加listview时,它不会扩展。此外,当在nestedscrollview中添加多个recyclerview时,所有recyclerview都会扩展。之间的区别是什么listview和recyclerview在这里?
示例:
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/myrecycleview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="true"
android:scrollbars="vertical"
app:layoutManager="android.support.v7.widget.LinearLayoutManager"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="My Button"/>
</LinearLayout>
此处Button在滚动视图的末端可见,但
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="vertical">
<ListView
android:id="@+id/mylistview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="true"
android:scrollbars="vertical"
/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="My Button"/>
</LinearLayout>
此处按钮不可见。