Android嵌套Scrollview

时间:2016-12-27 05:30:57

标签: android

我有这个嵌套的滚动视图,其中我已经在我的xml中获取了一个回收站视图。

   <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="50dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="30dp"
            android:orientation="vertical">

            <android.support.v7.widget.CardView
                android:id="@+id/cardView1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="#eaeaea"
                app:cardElevation="0dp"
                android:layout_margin="13dp">

                <android.support.v7.widget.RecyclerView
                    android:id="@+id/rvcategories"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:clipToPadding="false"
                    android:scrollbars="vertical"

                    />
            </android.support.v7.widget.CardView>

但是屏幕上连续只有3个项目需要滚动。我想要的是它显示的内容与显示给用户的屏幕上的列表一样多。 我只想要整个屏幕应该屏幕显示屏幕上显示的所有列表项而不滚动。

1 个答案:

答案 0 :(得分:0)

做这样的事情。

<ScrollView>
  <LinearLayout>
    <TextView/>
    .
    .
    .    
  </LinearLayout>
</ScrollView>

使用LinearLayout添加多个项目。 ScrollView不会影响内部视图的尺寸。您可以根据需要添加任意数量的视图,而无需担心屏幕大小或视图大小。