I am trying to load images using URL in Listview and I am able to show a progressbar widget while loading the images.
But the problem is, the image is not displayed for the first list item even if it gets loaded in Background. i.e onCompletionListener for that item gets executed properly, but the images is not displayed.
If I scroll the list down and comeback upwards the image is displayed.
Is there any other way to show progress while loading Images in ListView or any general view.
This is my layout
<FrameLayout
android:id="@+id/layout_img"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
I am trying to load images using URL in Listview and I am able to show a progressbar widget while loading the images.
But the problem is, the image is not displayed for the first list item even if it gets loaded in Background. i.e onCompletionListener for that item gets executed properly, but the images is not displayed.
If I scroll the list down and comeback upwards the image is displayed.
Is there any other way to show progress while loading Images in ListView or any general view.
This is my layout <FrameLayout android:id="@+id/layout_img" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" >