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
  • 10,420
  • 10
  • 72
  • 100

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,850
  • 21
  • 36
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
  • 10,420
  • 10
  • 72
  • 100