My application use a ListView which display different items in the cell. it must have photo and name, but it happens to have description and icons.
ListView
The
I had the same problem.
if (!imageuri.isEmpty()) { rl.setVisibility(View.VISIBLE); SmartImageView imageView = (SmartImageView) view.findViewById(R.id.detailimageView1); imageView.setImageUrl(imageuri); } else { rl.setVisibility(View.GONE); }
Thanks for the solution!