我一直在尝试在Android中实现图像的延迟加载。我在这里遵循了这个优秀的教程: http://www.androidhive.info/2012/02/android-custom-listview-with-image-and-text/
问题是它在模拟器中运行得很好。在模拟器中,图像会加载,但在实际设备上,它们只显示默认图像。
我已经在6台Android设备上测试了它没有运气但是它们在模拟器上完美加载。
关于我哪里出错的任何想法?
先谢谢你们!
编辑:我已修改代码以使用JSON解析而不是XML解析,如果这很重要。
我的懒惰适配器类:
public class LazyAdapter extends BaseAdapter {
private Activity activity;
private ArrayList<HashMap<String, String>> data;
private static LayoutInflater inflater=null;
public ImageLoader imageLoader;
public LazyAdapter(Activity a, ArrayList<HashMap<String, String>> d) {
activity = a;
data=d;
inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
imageLoader=new ImageLoader(activity.getApplicationContext());
// Toast.makeText(a, "here too", 500).show();
}
public int getCount() {
return data.size();
}
public Object getItem(int position) {
return position;
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
View vi=convertView;
if(convertView==null)
vi = inflater.inflate(R.layout.list_row, null);
TextView title = (TextView)vi.findViewById(R.id.title); // title
ImageView thumb_image=(ImageView)vi.findViewById(R.id.list_image); // thumb image
HashMap<String, String> song = new HashMap<String, String>();
song = data.get(position);
// Setting all values in listview
title.setText(song.get("msg"));
imageLoader.DisplayImage(song.get("thumb"), thumb_image);
return vi;
}
}
答案 0 :(得分:3)
将此行放入您的代码并尝试...
thumb_image.setTag(song.get("thumb"));
imageLoader.DisplayImage(song.get("thumb"), thumb_image);
答案 1 :(得分:3)
如果您使用此解决方案
https://github.com/thest1/LazyList
你需要添加
android.permission.WRITE_EXTERNAL_STORAGE
在android清单中答案 2 :(得分:1)
我能给你的最佳答案是:“使用其他更好的延迟加载实现”,例如fedorvlasov's lazy list adapter。
答案 3 :(得分:0)
这将是一个迟到的答案,但有些人可以受益。 您引用的教程在模拟器和手机上运行良好。
我认为这里的问题是许可问题。
如果您不将以下行放入清单文件,它可以在模拟器上运行,但不适用于手机。
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />