Skip to content Skip to sidebar Skip to footer

Listview In The First Activity, Listview In The Second Activity; Nested Json- No Images In Second Listview.

I’m using Gson and Universal Image Loader. I used this project like a template (you need change version to run it, it shows in tutorial): tutorial: https://www.youtube.com/watch?

Solution 1:

I will suppose that you are passing correct url via intent so in your DetailActivity:

String flag;
flag = i.getStringExtra("flag");
flagImg = (ImageView)findViewById(R.id.detailImg);
ImageLoader imageLoader = ImageLoader.getInstance();
imageLoader.displayImage(flag, flagImg);

Post a Comment for "Listview In The First Activity, Listview In The Second Activity; Nested Json- No Images In Second Listview."