e.CenterItemIndex становится 0 при каждом изменении группы (ОС)
Я использую событие Scrolled для iOS. Если
CollectionView
содержит группы,
e.CenterItemIndex
становится 0 при каждом изменении группы. Есть ли способ исправить это?
private void CollectionViewtems_Scrolled(object sender, ItemsViewScrolledEventArgs e)
{
var centerItemIndex=e.CenterItemIndex;
}
На iOs: Когда группа
collectionView
изменит его снова начинается с 0; Пример при прокрутке на iOS:
Index is 0
Index is 1
Index is 2
Index is 3
Index is 4
Index is 5 //After that index group will change
Index is 0
Index is 1
Index is 2 //And after that index group will change again
Index is 0
Index is 1
Index is 2
Index is 3
Index is 4
С другой стороны, индекс Android будет постоянно увеличиваться.
Index is 0
Index is 1
Index is 2
Index is 3
Index is 4
Index is 5 //After that index group will change
Index is 6
Index is 7
Index is 8 //And after that index group will change again
Index is 9
Index is 10
Index is 11
Index is 12
Index is 13