I don't want nothing more, just handle ListView's itemtapped event. When I open the page first time, it works.
BUT
When I navigate to another page with tabs, and later navigate to the listview page again, this event is NOT fired on Android. After some testing, I realized, after scrolling listview cells up and down, and tap the cell again, the event fires again.
On IOS it works like a charm...
What should I do to make it work on Android?
_topicListView.ItemTapped += async (object sender, ItemTappedEventArgs e) =>
{
//dosomething
};
Thanks!