JSON 画像を表示するいくつかの方法を試してきましたが、私の解決策は成功しませんでした。
JSON を解析したところ、応答が返ってきました。
ただし、応答には、アプリケーションに表示する必要がある画像が含まれています。
画像を :"img src=question/images/u2_1_l2_q66" として受け取ります。これは単なる文字列です。エミュレーターと同じテキスト「画像ではありません」が表示されます。
drawable では、画像を追加する必要がありますか?
アプリケーションでこれらの画像を表示するにはどうすればよいですか? 私を案内してください。
どんな助けもかなりのものです。
コード
protected String doInBackground(String... args) {
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("tid", tid));
json = jsonParser.makeHttpRequest(url_get_quesurl, "GET", params);
Log.d("All Groups: ", json.toString());
try {
int success = json.getInt(TAG_SUCCESS);
if (success == 1) {
System.out.println("Success");
groups = json.getJSONArray(TAG_GROUP);
System.out.println("Result Success+++"+groups);
for (int i = 0; i < groups.length();i++) {
JSONObject c = groups.getJSONObject(i);
String question = c.getString(TAG_QUES);
System.out.println("Checking ::"+question);
ques1.add(question);
String img = c.getString(TAG_IMAGE);
System.out.println("Checking ::"+img);
imgarr.add(img);
}
} else {
showAlert();
}
} catch (JSONException e) {
System.out.println("Error "+e.toString());
}
return null;
}
protected void onPostExecute(String file_url) {
pDialog.dismiss();
ques1=new ArrayList<String>(new ArrayList<String>(ques1));
imgarr=new ArrayList<String>(new ArrayList<String>(imgarr));
TextView txtque = (TextView) findViewById(R.id.que_txt);
txtque.setText("Q" + num + ")" + ques1.get(j) + imgarr.get(g));
}
phpコード
$group[$i]['image']= base64_encode(file_get_contents("http://10.0.2.2/question/images/".$row['image']));
$i++;
array_push($response["group"], $group);