Quantcast
Channel: Corrado's Blog 2.0
Viewing all articles
Browse latest Browse all 46

Change ListView RowHeight programmatically in Xamarin Android

$
0
0

Here’s a quick code snippet that allows you to change the row height of an Android ListView in Xamarin

public override View GetView(int position, View convertView, ViewGroup parent) { View view = convertView ?? this.context.LayoutInflater.Inflate(Android.Resource.Layout.ActivityListItem, null); if (view.LayoutParameters == null) { view.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, 300); } else { view.LayoutParameters.Height = 300; } ...other code here... return view; }

Code resides inside ListView adapter, as you see, the magic is acting on view LayoutParameters property.

Hope it helps.


Viewing all articles
Browse latest Browse all 46

Trending Articles