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"/>