テキストとcorrs画像を表示するために必要なリストビューがあります。私はそれにarrayadapterを使用しました。テキストの値と画像のURLを含むハッシュマップの配列リストを取得できます。
<Arraylist<Hashmap<String,string>> testdata : "name" and "image_url"
今、私はそれをバインドしようとしています。しかし、画像は表示されず、logcatはresolveuriが不良ビットマップで失敗したことを示しています。(私のURLは "/com.example.vocab.MainActivity/res/drawable-hdpi/right_icon.png"です)。私は何が間違っているのですか?助けてくれてありがとう。
// Binding resources Array to ListAdapter
this.setListAdapter(new SimpleAdapter(Grammar_tab_all.this, testdata ,
R.layout.list_item, new String[] { "name","img_url"},
new int[] { R.id.module_name_item, R.id.img_recom}));
final ListView lv = getListView();