How to set different row height for each row in listview?
In ListView, you can customize each row size by using the QueryItemSize event based on the item index. In this event, the Handled property indicates whether to set specified size for an item or not by its Boolean value. This event is raised when an item comes in view with the QueryItemSizeEventArgs argument.
Xaml
<ContentPage xmlns:syncfusion="clr-namespace:Syncfusion.ListView.XForms;assembly=Syncfusion.SfListView.XForms" > <ContentPage.Content> <Grid> <Grid.RowDefinitions> <RowDefinition Height="*"/> </Grid.RowDefinitions> <syncfusion:SfListView x:Name="listView" ItemsSource="{Binding contactsinfo}" QueryItemSize="listView_QueryItemSize"> <syncfusion:SfListView.ItemTemplate> <DataTemplate> <ViewCell> <ViewCell.View> <Grid> <Label Text="{Binding ContactName}"/> <Label Text="{Binding ContactNumber}"> </Grid> </ViewCell.View> </ViewCell> </DataTemplate> </syncfusion:SfListView.ItemTemplate> </syncfusion:SfListView> </Grid> </ContentPage.Content> </ContentPage>
C#
listView.QueryItemSize += ListView_QueryItemSize; private void ListView_QueryItemSize(object sender, QueryItemSizeEventArgs e) { if (e.ItemIndex % 2 == 0) e.ItemSize = 50; else e.ItemSize = 100; e.Handled = true; }
Sample Link : RowHeightCustomization
Conclusion
I hope you enjoyed learning about how to set different row height for each row in listview.
You can refer to our Xamarin Listview feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!