我正在使用 LazyAdapter 将图像从 url 加载到 imageview 中。 http://www.hdwallpapers.in/walls/parrot_high_resolution-normal.jpg进入图像视图,它看起来很可怕!有谁知道如何修理它?这是我的代码:
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"/>