ListView not expanding inside NestedScrollView

前端 未结 10 1098
忘了有多久
忘了有多久 2020-12-23 19:57

I am using CoordinatorLayout in my activity page. In that there is ListView below the app bar. But its not working when I use ListView

10条回答
  •  梦毁少年i
    2020-12-23 20:55

    Below code worked for me:

    ViewCompat.setNestedScrollingEnabled(listView, true);
    

    Your ListView should be inside NestedScrollView

提交回复
热议问题