Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/rest/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/sqlite/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 从服务器获取图像,并使用异步http响应处理程序设置为imageview_Android_Rest_Get_Android Async Http - Fatal编程技术网

Android 从服务器获取图像,并使用异步http响应处理程序设置为imageview

Android 从服务器获取图像,并使用异步http响应处理程序设置为imageview,android,rest,get,android-async-http,Android,Rest,Get,Android Async Http,我的问题是如何使用异步Http响应处理程序从服务器获取图像并将其设置为imageview。image的JsonObject是“profile_image”,需要从restapi获取它并显示到我的ImageView中 我的代码: AsyncHttpClient client = new AsyncHttpClient(); //private ProgressDialog Dialog = new ProgressDialog(post.this); List<

我的问题是如何使用异步Http响应处理程序从服务器获取图像并将其设置为imageview。image的JsonObject是“profile_image”,需要从restapi获取它并显示到我的ImageView中

我的代码:

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();}
            }

使用毕加索从服务器/URL加载图像:

但是,首先检查您的图像响应

在使用毕加索之前,不要忘记添加毕加索库,因为库和更多关于毕加索的信息


您可以发布您的示例JSON吗?设置时您面临什么问题?是否有错误?不支持??请确保您使用的是最新的异步http客户端,如果没有,请进行更改。是的,我使用的是最新的。希望,在使用之前,您已经为毕加索添加了库文件。
 "user": {

                                                                      "profile_image": "https:////image/upload/v1455884587/endflvkyqv3ot37g4unc.png",
                                                                   "profile_public_id": "endflvkyqv3ot37g4unc"
                                                                    }
                                                                  }
if(object.has("profile_image")){
Picasso.with(this)
          .load("" + object.getString("profile_image"))
          .fit()
          .into(imageView);
}