I have a listview with an array adapter. I need to show in that listview an int[], but it only works with string[]. Any idea?
This is my code:
int[] a = new int[20];
ArrayAdapter adapter = new ArrayAdapter(this, Android.Resource.Layout.SimpleListItem1, a[i]);
ListView list = FindViewById<ListView>(Resource.Id.listView1);
list.Adapter = adapter;
The int i is in for a cycle.