Cardview: [Android] Don't scroll item in list view

Created on 20 Aug 2018  路  7Comments  路  Source: AndreiMisiukevich/CardView

Hy,

I use the CarouselView with DataTemplate is listview. On iOS, it 's working. But on Android, it not scroll the item in listview?

android question resolved

All 7 comments

Hi
Show your xaml please

Hi, my xaml
<cards:CarouselView VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" ItemsSource="{Binding ItemMenuLists}"> <cards:CarouselView.ItemTemplate> <DataTemplate> <ListView ItemsSource="{Binding TestList}"> <ListView.ItemTemplate> <DataTemplate> <ViewCell> <StackLayout> <Image Source="{Binding ImgUrl}" /> <Label Text="{Binding Intro}" /> </StackLayout> </ViewCell> </DataTemplate> </ListView.ItemTemplate> </ListView> </DataTemplate> </cards:CarouselView.ItemTemplate> </cards:CarouselView>

Try to set VerticalSwipeThresholdDistance = 1000 for example
if you don't have luck with it, send please small sample with reproduction

Probably, i broke something with latest release (I added swipes)

Yes..set VerticalSwipeThresholdDistance = 1000...It 's working.. Tks bro :)

@morhung if you like this plugin, you can star it)

@AndreiMisiukevich (y) tks bro

you are welcome

Was this page helpful?
0 / 5 - 0 ratings

Related issues

troyvnit picture troyvnit  路  8Comments

SkeletonJohn picture SkeletonJohn  路  3Comments

toshitani23 picture toshitani23  路  6Comments

alicint picture alicint  路  3Comments

baranpirincal picture baranpirincal  路  4Comments