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

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -

Why does a .NET 4.0 program produce a system.unauthorizedAccess error on a Windows Server 2012 machine with .NET 4.5 installed? -