Setnotifyonchange(true) Not Working
I have added below codes in onResume() method in my android activity. username.addTextChangedListener(this); usernames_adapter = new ArrayAdapter(this,
Change
usernames_adapter.setNotifyOnChange(true);
TO
usernames_adapter.notifyDataSetChanged();
this method work only when you delete, update and insert item.
You may like these posts
Post a Comment for "Setnotifyonchange(true) Not Working"