[Solved] how can i parse an image and show it in my listview?


To create a ListView with custom views, you need to create a class that extends BaseAdapter. You then need to override its getView() method to return your custom view, in this case a view that contains an ImageView alongside a TextView. Then set an instance of this class as the adapter for your ListView.

This should help
Lazy load of images in ListView

0

solved how can i parse an image and show it in my listview?