imageview中的高质量图像?

时间:2013-07-03 09:35:45

标签: android url imageview

我正在使用LazyAdapter将图片从url加载到imageview中。 http://www.hdwallpapers.in/walls/parrot_high_resolution-normal.jpg进入imageview,看起来很糟糕!有谁知道如何修理它? 这是我的代码:

     final JSONArray jArray = new JSONArray(result);
                    for (int i = 0; i < jArray.length(); i++) {
                        HashMap<String, String> hm = new HashMap<String, String>();
                        JSONObject json = jArray.getJSONObject(i);
                        hm.put("phoneimage", json.getString("imageurl"));
                        resultList.add(hm);
                    }
                    arrowfront.setOnClickListener(new View.OnClickListener() {

                        public void onClick(View v) {
                            position++;
                            HashMap<String, String> frontHm = new HashMap<String, String>();

                            imageLoader.DisplayImage(frontHm.get("phoneimage"),themainimage);

至于xml:

<ImageView
    android:id="@+id/ivdisplay"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center"/>

2 个答案:

答案 0 :(得分:0)

之前我已经实现了LazyAdapter,并且在将位图加工到UI之前对其进行编码,因为将高质量图像加载到UI将导致高内存使用量,这将迫使应用程序关闭,我已经查看了示例你提供的代码,正如你在ImageLoader类中看到的那样,第89行的位图有一个编码。
转到类ImageLoader并搜索final int REQUIRED_SIZE=70;并将70更改为200,看看它是否有帮助。

答案 1 :(得分:0)

您可以在此处使用Android Query rom http://code.google.com/p/android-query/downloads/detail?name=android-query.0.25.10.jar

并在你的imageView上实现它

    AQuery aq = new AQuery(ImageView); // your imageview object 
    aq.id(R.id.imageview).image("urlofImage");

它会自动将图像设置为您的imagevew