android - Horizontal ListView not updating -
i'm developing app has horizontallistview, i'm using twowayview lib, , works fine, when has item changed, listview try reconstruct view, nothing changes, here code:
if (mhorizontallistviewusersinchat.getadapter() != null) { usersinchatadapter.notifydatasetchanged(); mhorizontallistviewusersinchat.invalidate(); } else { mhorizontallistviewusersinchat.setadapter(usersinchatadapter); } inside adapter there imageview loads image picasso, when adapter notified, new url not loaded inside imageview, me?
thanks.
Comments
Post a Comment