How to show images in imageview in simple adapter?
I am getting data from JSON Array and I can show the text in textviews but having problems with showing the images. here's the main activity: public class test extends ListActivity { // url to make request private static String url = "http://test/json.php"; // JSON Node names private static final String CONTACTS = "contacts"; private static final String NAME = "name"; private static final String IMAGE = "image"; // contacts JSONArray JSONArray contacts = null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //