You can reproduce the issue with the SDK example http://docs.telerik.com/devtools/xamarin/controls/listview/gestures/listview-gestures-cell-swipe. In UWP everything looks fine, but in Android both labels of the item swipe template appears.
In multiple selection scenarios with ItemSwipeContent when the item is swiped, the selection indicator hides the content of the list item.
When you have placed the ListView within a StackLayout and the number of items is greater than what the screen can fit, the following undesired effects are observed: in Android: The last item is cut off in iOS: You are not able to scroll down the list and it always bounces back to the original view
On Android, when grouping with IsItemSwipeEnabled=True, the Group Header is accidentally swipe-able and reveals the ItemSwipeContent. The issue is presenting on Android, but not iOS (UWP unknown) v 2017.2.818.234
First the control is loaded, then operations (like grouping) are applied and this leads to flickering. Available in minor release 2017.3.1103. It will also be available in the R1 2018 release.
Reordering items in the ListView causes the CollectionChanged event to be triggered with Remove and then Add action instead of just Move action
If you scroll the ListView to a specific position in Android, switch to another view and get back to the ListView -> the position is preserved. This is not the behavior on iOS. We need to unify the behavior and introduce such action in iOS.
Available in the R2 2018 release.
See this recording of the issue at runtime: https://www.screencast.com/t/EMOdMqs2yX Use the following to replicate: <telerikDataControls:RadListView x:Name="listView" IsItemsReorderEnabled="True" SelectionMode="None"> <telerikDataControls:RadListView.LayoutDefinition> <listView:ListViewLinearLayout Orientation="Horizontal" HorizontalItemSpacing="10" VerticalItemSpacing="0"/> </telerikDataControls:RadListView.LayoutDefinition> </telerikDataControls:RadListView>
Add OldIndex and NewIndex properties to the ReorderEndedEventArgs. This would support scenarios where the ItemsSource is not an indexable collection/list (e.g. IEnumerable).
In case you lower down the number of items, the RadListView control would not lower its height in situations where you expect this to happen.
Please check this forum link (https://www.telerik.com/forums/listviewtextcell-text-vertically-not-centered-android) In Android text in ListViewTextCell can not center aligned and can not change alignment of any direction. iOS it seems OK No 1 screenshot shows iOS No 2 screenshot shows Android
When reordering items with multiple selection enabled, in some cases on iOS platform, the selection is messed up.