1

I have the listView in the NestedScrollView since the nested scrollView are out of the screen so some list will not be shown

enter image description here

UmAnusorn
  • 9,338
  • 8
  • 69
  • 95

2 Answers2

1

You need to use RecyclerView inside NestedScrollView. And wrap it with custom LinearLayoutManager. How to use RecyclerView inside NestedScrollView?

Community
  • 1
  • 1
Maor Hadad
  • 1,808
  • 21
  • 35
0

For the fast fix just put it in linear layout

<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>
UmAnusorn
  • 9,338
  • 8
  • 69
  • 95