I trying to create custom Listadapter using BaseAdapter , in this adapter the images are URLs and the adapter must download every thing then update the view ..
every thing done and work ok but my problem is the I cant move the list view when the images still loading I should wait to finish load every thing then I can move ..
I think the problem happen because the list view return to top index every update because I update on every image done download but I'm not sure because the list freeze so I can't move it to confirm that, or there is some thing else ..
I update listadapter using :
adap.notifyDataSetChanged();
this is all details and I hope any body know how can I fix this problem help me and tell me what is the right way to update the view without problems (return to first index,freeze) ..
Note : no problem with download and I can move the list when images downloading the problem only when loading and update .
Solve :
I checked my code the download function ok and the freeze from update Adapter :
adp.notifyDataSetChanged();
it's take a few seconds to update so I Change the update way :
int index = lst.getFirstVisiblePosition();
View v = lst.getChildAt(0);
int top = (v == null) ? 0 : v.getTop();
// ...
adap.notifyDataSetInvalidated();
// restore
lst.setSelectionFromTop(index, top);
try using google volley library it will help you to download faster.