简体   繁体   English

Android Apps:如何从Web服务获取图像以在应用程序中显示?

[英]Android Apps : how to get image from webservice to show in application?

this is the json format from webservice : {"result" : [{"id":"1","category":"Rumah sakit","image":"hospital.png"}]} 这是来自webservice的json格式:{“ result”:[{“ id”:“ 1”,“ category”:“ Rumah sakit”,“ image”:“ hospital.png”}]}

here's the android code: 这是android代码:

public class ARPublicFacilitiesActivity extends Activity { 公共类ARPublicFacilitiesActivity扩展了Activity {

public static int PILIHAN = 0;

private ProgressDialog waitDialog;
private LinearLayout layout;

private String JsonKategori = "";

private ImageLoader imgLoader;

public static String image[];

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    this.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
    getWindow().setSoftInputMode(
            WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
    setContentView(R.layout.menudinamis);

    layout = (LinearLayout) findViewById(R.id.layout);

    waitDialog = ProgressDialog.show(ARPublicFacilitiesActivity.this, "",
            "Download category ...");
    waitDialog.setIcon(R.drawable.iconarpf);
    waitDialog.show();
    new UnduhCategoryTask().execute();

}

class UnduhCategoryTask extends AsyncTask<String, Void, Void> {

    protected Void doInBackground(String... arg0) {
        JsonKategori = HTTPConnection.openUrl(HTTPConnection.host
                + "category.php");
        System.out.println("Data : " + JsonKategori);
        return null;
    }

    protected void onPostExecute(Void result) {
        // TODO Auto-generated method stub
        super.onPostExecute(result);
        waitDialog.dismiss();
        initButton();
    }
}

public void initButton() {

    imgLoader = new ImageLoader(this);

    // memparsing json
    try {
        JSONObject jo = new JSONObject(JsonKategori);
        JSONArray ja = jo.getJSONArray("result");
        int id = 0;
        image = new String[ja.length()];
        LinearLayout ly[] = new LinearLayout[2];
        // DrawableManager dm = new DrawableManager();
        for (int x = 0; x < ly.length; x++) {
            ly[x] = new LinearLayout(this);
            ly[x].setOrientation(LinearLayout.VERTICAL);
            ly[x].setPadding(5, 5, 5, 5);
            ly[x].setGravity(Gravity.CENTER_VERTICAL);
        }
        for (int x = 0; x < ja.length(); x++) {
            JSONObject joj = ja.getJSONObject(x);

            image[x] = joj.getString("image");
            ImageView img = new ImageView(this);
            img.setPadding(5, 5, 5, 2);
            img.setMinimumHeight(96);
            img.setMinimumWidth(96);
            img.setMaxHeight(96);
            img.setMaxWidth(96);

            final String nilai = joj.getString("id") + "";

            img.setTag(HTTPConnection.urlPicture 
                    + joj.getString("image"));
            imgLoader.DisplayImage(HTTPConnection.urlPicture 
                    + joj.getString("image"),this, img);
            img.setOnClickListener(new OnClickListener() {

                public void onClick(View arg0) {
                    PILIHAN = Integer.parseInt(nilai);
                    startActivity(new Intent(
                            ARPublicFacilitiesActivity.this, MixView.class));
                }
            });


            ly[id].addView(img);
            TextView txt = new TextView(this);
            txt.setText(joj.getString("category"));
            txt.setTextColor(Color.GRAY);
            txt.setGravity(Gravity.CENTER_HORIZONTAL);
            ly[id].addView(txt);
            if (ja.length() % 2 == 0) {
                if (x == ((ja.length() / 2) - 1)) {
                    layout.addView(ly[id]);
                    ++id;
                }
            } else {
                if (x == (ja.length() / 2)) {
                    layout.addView(ly[id]);
                    ++id;
                }
            }
        }
        layout.addView(ly[id]);
    } catch (JSONException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

} }

when i run this script above, the category title and image is success appear. 当我在上面运行此脚本时,将显示类别标题和图像是否成功。 The problem is image that appears not my image from web service, but android default icon. 问题是出现的图像不是来自网络服务的我的图像,而是android默认图标。 I have been try to resize my image in web service but still not working. 我一直试图在Web服务中调整图像大小,但仍然无法正常工作。

please help me to solve it. 请帮我解决。

Thanks so much. 非常感谢。

Because I could not find any line of code in which you are setting image on your ImageView. 因为我找不到要在ImageView上设置图像的任何代码行。 Like img.setImage(YOUR_IMAGE); 像img.setImage(YOUR_IMAGE);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM