Not able to scroll all ListView items

后端 未结 2 1846
既然无缘
既然无缘 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

提交回复
热议问题