I want to add endless listView inside ScrollView but on ScrollChanged does not work
<ScrollView ..>
<EndlessListView ../>
</ScrollView>
Is there any way to do that?
I want to add endless listView inside ScrollView but on ScrollChanged does not work
<ScrollView ..>
<EndlessListView ../>
</ScrollView>
Is there any way to do that?
If you want to put a listview in a scrollview, you have to re-implement a passive listview that does not handle its scroll.
You'll have to check for children size and visibility, and do the recycling stuff yourself.
I did it, it is possible, but you should not go this way.