Can I add ImageView to this list from External URL?
item.put will just add the URL link but it won't display the image at all
It's not duplicate. I just want to know what additional code I have to add to load the image on this list.
try {
    JSONObject object = new JSONObject(string);
    JSONArray offers = object.optJSONArray("data");
    ArrayList<HashMap<String, String>> list = new ArrayList<>();
    HashMap<String, String> item;
    for(int i = 0; i < offers.length(); i++) {
        JSONObject jsonChildNode = offers.getJSONObject(i);
        item = new HashMap<>();
        item.put("L1", jsonChildNode.optString("gate"));
        item.put("L2", jsonChildNode.optString("stack"));
        item.put("L3", jsonChildNode.optString("image"));
        list.add(item);
    }
    sa = new SimpleAdapter(getActivity(), list,
            R.layout.installs_item,
            new String[]{"L1", "L2", "L3"},
            new int[]{R.id.gate, R.id.stack, R.id.image});
    installs.setAdapter(sa);
} catch (JSONException e) {
    e.printStackTrace();
}
installs_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/L1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Head"
        android:textSize="22sp"
        android:textStyle="italic" />
    <TextView
        android:id="@+id/L2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="sub"
        android:textSize="14sp" />
    <TextView
        android:id="@+id/L3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="desc"
        android:textSize="14sp" />
    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="" />
</LinearLayout>
 
     
     
    