Re: [mono-android] ArrayAdapter & NotifyDataSetChanged not showing new items

2011-10-18 Thread Stuart Johnson
Android.Runtime.JavaList has fixed it, thank you. On 16/10/11 03:13, Jonathan Pryor wrote: > On Oct 15, 2011, at 10:44 AM, Stuart Johnson wrote: >> I have a List<> with an ArrayAdapter that shows the contents of that list. >> >> If I make a change to one of those items in the List<>, and do >>

Re: [mono-android] ArrayAdapter & NotifyDataSetChanged not showing new items

2011-10-15 Thread Jonathan Pryor
On Oct 15, 2011, at 10:44 AM, Stuart Johnson wrote: > I have a List<> with an ArrayAdapter that shows the contents of that list. > > If I make a change to one of those items in the List<>, and do > NotifyDataSetChanged() in the UI thread, I can see those changes. But > if I .Add to the List<>,

Re: [mono-android] ArrayAdapter & NotifyDataSetChanged not showing new items

2011-10-15 Thread Stuart Johnson
On 15/10/11 23:57, gabriel.b...@gmail.com wrote: > How do you made the Array Adapter work I'm having problems with the > Array adapter constructor. public class ArrayAdapter_MsgView : ArrayAdapter { public ArrayAdapter_MsgView(Context context, int textViewResourceId, IList items): b

Re: [mono-android] ArrayAdapter & NotifyDataSetChanged not showing new items

2011-10-15 Thread gabriel.b...@gmail.com
How do you made the Array Adapter work I'm having problems with the Array adapter constructor. 2011/10/15 Stuart Johnson > I have a List<> with an ArrayAdapter that shows the contents of that list. > > If I make a change to one of those items in the List<>, and do > NotifyDataSetChanged() in the