画像名(例:「Image1.png」)をJSON
ファイルに保存しました。そして、私は を使用してその名前を取得しJSONParser
ました。しかし、問題は、その画像を で表示できないことですImageView
。
ここに私が書いたコードがあります:
ImageView imageView = (ImageView)findViewById(R.id.imageViewer);
for (int i = 0; i < posts.length(); i++) {
JSONObject c = posts.getJSONObject(i);
String varImage = c.getString(TAG_IMAGE);
int resId = getResources().getIdentifier(varImage, "drawable" , getPackageName());
imageView.setImageResource(resId);
//code to add data in hash map
}