如何将Listview和Viewpager放在ScrollView中?

时间:2017-04-17 17:45:22

标签: android listview android-viewpager scrollview

我有一个listview和viewpager,我用它来生成我的图像滑块。这两个有自己的适配器。在我的layout.xml中,我想将它们放入滚动视图,但是当我执行viewpager时不会使用listview滚动。如果你有什么想法,能帮助我吗?

由于

 <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        tools:context="com.test.MainActivity">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:id="@+id/test">

            <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
                android:id="@+id/pager_news"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1" />

            <ListView
                android:id="@+id/news_lw"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="2"
                android:nestedScrollingEnabled="true">

            </ListView>
        </LinearLayout>

    </LinearLayout>

2 个答案:

答案 0 :(得分:1)

ListView不支持嵌套滚动。因此,如果您认为有必要采用NestedScrollView,请使用RecyclerView

更好的方法是使用CoordinatorLayout并定义一个自定义行为,如果ViewPager在特定范围内滚动,则会自动滚动RecyclerView

答案 1 :(得分:1)

NestedScrollViewRecyclerView一起使用,而不是ListView

试试这个:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/test">

        <android.support.v4.view.ViewPager
            android:id="@+id/pager_news"
            android:layout_width="match_parent"
            android:layout_height="200dp" />

        <android.support.v7.widget.RecyclerView
            android:id="@+id/news_lw"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@id/pager_news">

        </android.support.v7.widget.RecyclerView>
    </RelativeLayout>

</android.support.v4.widget.NestedScrollView>