When I chose one item in ListView in Xamarin Android is choosen twins . In Xamarin.Forms exist setting the Caching Strategy of ListView : RetainElement and RecycleElement .
С#
var listView = new ListView(ListViewCachingStrategy.RecycleElement);
XAML
<ListView CachingStrategy="RecycleElement">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
...
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
How can I config cache in the Xamarin Android ? Cause I have are problem , when I choose some Items in the ListView it's choosen twice symmetric in another part of ListView . What I must to do to fix that ? Say me please somebody ! Than You !