You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On adding a new dialog, item gets added but UI isn't updated.
/** * Add dialog to the end of dialogs list * * @param dialog dialog item */publicvoidaddItem(DIALOGdialog) {
items.add(dialog);
notifyItemInserted(0); <=== shouldbenotifyItemInserted(items.length() - 1)
}
The text was updated successfully, but these errors were encountered:
Hi! Yeah you are right! I can't understand how we missed it. I'll fix it. You can use method addItem(int position, DIALOG dialog) while I haven't update library.
On adding a new dialog, item gets added but UI isn't updated.
The text was updated successfully, but these errors were encountered: