Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xamarin forms ListView inside ScrollView issue

In my Xamarin forms application, there are multiple ListView controls inside a ScrollView. But in android the scrolling is not working for ListView. Is there any alternative solution?

like image 376
Aneesh.A.M Avatar asked May 25 '16 08:05

Aneesh.A.M


1 Answers

You SHOULD NOT include ListViews into ScrollView as it system will confuse scrolling behavior of those two. You need to redesign your page with this in mind.

Example: 1) Use ListViews inside StackLayout 2) Use TableViews inside ScrollView

like image 95
Danil Kurkin Avatar answered Oct 16 '22 02:10

Danil Kurkin