<ScrollView>
<StackLayout Orientation="Vertical" VerticalOptions="StartAndExpand" HorizontalOptions="FillAndExpand" Padding="15" >
<listview:SfListView ItemsSource="{Binding JugadoresHoyo}" SelectionMode="None" HeightRequest="{Binding ListSizeJugadores}" ItemSize="110" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" >
<listview:SfListView.ItemTemplate>
<DataTemplate>
<Grid VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="3*" />
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="1*" />
</Grid.ColumnDefinitions>
<controls:CircleImage Grid.Row="0" Grid.Column="0" Source="{Binding ImageSourceJugador}" Aspect="AspectFit" WidthRequest="60" HeightRequest="60" HorizontalOptions="StartAndExpand" VerticalOptions="CenterAndExpand"></controls:CircleImage>
<Label Text="{Binding Nombre}" TextColor="Black" HorizontalOptions="StartAndExpand" VerticalOptions="CenterAndExpand" Grid.Row="0" Grid.Column="1" ></Label>
<Button Grid.Row="0" Grid.Column="2" Text="-" TextColor="Black" CommandParameter="{Binding .}" Command="{Binding Path= BindingContext.DecreaseScore, Source={x:Reference Name=RegistroPageContent}}" HorizontalOptions="FillAndExpand" FontAttributes="Bold" BorderColor="#c7d8d6" BorderWidth="1" CornerRadius="0" BackgroundColor="White" VerticalOptions="FillAndExpand" ></Button>
<Frame Grid.Row="0" Grid.Column="3" HeightRequest="50" WidthRequest="50" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" CornerRadius="{Binding CornerRadius2}" HasShadow="False" Margin="0" Padding="0" BorderColor="{Binding BorderColor2}" >
<Frame Grid.Row="0" Grid.Column="3" HeightRequest="40" WidthRequest="40" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" CornerRadius="{Binding CornerRadius1}" HasShadow="False" Margin="0" Padding="0" BorderColor="{Binding BorderColor1}" >
<Label Text="{Binding Golpes}" FontSize="25" TextColor="{Binding ParColor}" FontAttributes="Bold" VerticalTextAlignment="Center" HorizontalTextAlignment="Center" HorizontalOptions="CenterAndExpand"></Label>
</Frame>
</Frame>
<Button Grid.Row="0" Grid.Column="4" Text="+" TextColor="Black" CommandParameter="{Binding .}" Command="{Binding Path= BindingContext.IncreaseScore, Source={x:Reference Name=RegistroPageContent}}" FontAttributes="Bold" BorderColor="#c7d8d6" BorderWidth="1" CornerRadius="0" BackgroundColor="White" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" ></Button>
<listview:SfListView Orientation="Horizontal" HeightRequest="{Binding AccesoriosListSize}" AutoFitMode="None" ItemsSource="{Binding AccesoriosList}" SelectionMode="None" Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="5" ItemSize="120" ItemSpacing="0,0,0,0" >
<listview:SfListView.ItemTemplate>
<DataTemplate>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="7*" />
<ColumnDefinition Width="3*" />
</Grid.ColumnDefinitions>
<Label Text="{Binding Nombre}" IsVisible="{Binding IsVisibleAccesorio}" TextColor="Black" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" Grid.Column="0"></Label>
<syncfusion:SfCheckBox IsChecked="{Binding Checked}" IsVisible="{Binding IsVisibleAccesorio}" StateChanged="SfCheckBox_StateChanged" CornerRadius="0" CheckedColor="{Binding ColorAccesorio}" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" Grid.Column="1"></syncfusion:SfCheckBox>
</Grid>
</DataTemplate>
</listview:SfListView.ItemTemplate>
</listview:SfListView>
</Grid>
</DataTemplate>
</listview:SfListView.ItemTemplate>
</listview:SfListView>
</StackLayout>
<ScrollView>
There is more code, but the important thing is this, as you can see I assign size to each SfListView involved, in IOS it works perfectly, the problem is in android, it happens when scrolling, annex photos of what happens. It changes the place items and sometimes disappears them, it should be noted that they are around 20 and it only puts me a few, I handle the sizes of the lists well, so I can't find why it doesn't work
Attachment:
Downloads_ced45017.7z