Not able to scroll all ListView items

后端 未结 2 1847
既然无缘
既然无缘 2021-01-28 15:30

I\'m not able to scroll all list items. I can scroll it with mouse scroll bar on simulator but if want to scroll it on touch it is not scrolling.

Can somebody help me ou

相关标签:
2条回答
  • 2021-01-28 15:46

    You can't embed your ListView within ScrollView. ScrollView already has its own Scroll listeners. So when you try to have another view like listView within a view which has its own Gestures it will make your listview to hang up. And in your case I believe just removing the Scroll view alone will make it work correctly

    0 讨论(0)
  • 2021-01-28 15:51

    Never put your ListView inside ScrollView.And also never put MapView,ListView,WebView inside scrollView.

    Because those are already scrolled view itself.And no need to put it in scrollview.so remove it from scrollview.

    0 讨论(0)
提交回复
热议问题