NestedScrollView不会滚动

时间:2018-02-19 19:37:04

标签: android android-nestedscrollview

我在嵌套滚动视图中有两个列表视图,我希望两个列表视图都滚动为一个。这是我实现的,但我没有看到任何滚动,有人可以告诉我有什么问题

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <ListView
            android:id="@+id/lv1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:nestedScrollingEnabled="false"
            >
        </ListView>



        <ListView
            android:id="@+id/lv_disabled_activities"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:nestedScrollingEnabled="false"
            >
        </ListView>

    </LinearLayout>

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

1 个答案:

答案 0 :(得分:0)

从nestedScrollView android:fillViewport="true"

中删除此行

修改

如果你想看到每个listView的完整高度,请点击此链接...并使用此方法.. 根据孩子设置listview的高度 listview and recyclerview doesnot wrap content with count