android.support.v4.widget.NestedScrollView高度问题

时间:2015-10-22 10:32:28

标签: android android-support-library

我在NestedScrollView中有listView,因为嵌套的scrollView不在屏幕上,所以某些列表不会显示

enter image description here

2 个答案:

答案 0 :(得分:1)

您需要在NestedScrollView中使用RecyclerView。并使用自定义LinearLayoutManager进行包装。 How to use RecyclerView inside NestedScrollView?

答案 1 :(得分:0)

对于快速修复,只需将其置于线性布局

<LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
                <com.nhaarman.listviewanimations.itemmanipulation.DynamicListView
                    android:id="@+id/listViewTaskInComplete"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    />
            </LinearLayout>