Hi,
I've got a problem with my ListView.
When I select an item, the property that's bound to the ListView's SelectedItem property is not always being updated.
Example:
I have 3 items. If I tap on the last one, everything's okay. If I tap on the other items, I have to tap the visual controls inside the ViewCell directly to make it work. Taps on the ViewCell's background are being ignored.
It worked perfectly before migrating from shared to PCL project.
My bindings:
ItemsSource="{Binding Items}"
SelectedItem="{Binding SelectedItem, Mode=OneWayToSource}"
I also tried TwoWay binding, but it doesn't have any effect.
In the ViewModel, the Items property is an ObservableCollection and the SelectedItem is a property of type T.
I'm testing on Android 7.1.
How can I make it work again?