My question is how to fetch an image from server and set into imageview using Async Http Response Handler. The JsonObject for image is "profile_image" which needs to be fetched from the Rest api and display into my ImageView.
My code:
AsyncHttpClient client = new AsyncHttpClient();
//private ProgressDialog Dialog = new ProgressDialog(post.this);
List<String> userCredentials = UserUtils.getLoginDetails();
client.addHeader("x-user-id", userCredentials.get(0));
client.addHeader("x-auth-token", userCredentials.get(1));
client.get("https://", new AsyncHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {
final String response = new String(responseBody);
android.util.Log.e("Response", "" + response);
try {
JSONObject jsonObject = new JSONObject(response);
JSONObject object = jsonObject.getJSONObject("user");
String attr1 = object.getString("name");
data = "" + attr1;
textView15.setText(data);
if (object.has("profession")) {
String attr2 = object.getString("profession");
data2 = "" + attr2;
textView16.setText(data2);
}
if(object.has("company")){
String attr3 = object.getString("company");
data3 = "" + attr3;
textView38.setText(data3);
}
if(object.has("profile_image")){
}
JSONObject jsonObject1 = object.getJSONObject("emails");
JSONArray jsonArray = jsonObject1.getJSONArray("address");
for (int i = 0; i < jsonArray.length(); i++) {
data += "\n"
+ jsonArray.getJSONObject(i).getString("address")
.toString();
// data += " Name= "+ attr1 +" \n ";
}
textView15.setText(data);
//Dialog.dismiss();
} catch (JSONException e) {e.printStackTrace();}
}
API code:
"user": {
"profile_image": "https:////image/upload/v1455884587/endflvkyqv3ot37g4unc.png",
"profile_public_id": "endflvkyqv3ot37g4unc"
}
}