Adapter.NotifyDataSetChanged doesn't work
问题 I have adapter for my listView and i want to update my adapter using NotifyDataSetChanged(), but it doesn't work for me. That's how I add data in my adapter: if (Messages.Count != 0) { ChatAdapter = new BubbleAdapter (this, Messages); if(listViewChat.Adapter == null) { listViewChat.Adapter = ChatAdapter; } else { ChatAdapter.NotifyDataSetChanged(); } } But like I said it does not work... If i update using this way, my listView is scrolling to top: ChatAdapter = new BubbleAdapter (this,