我有一个gridview照片库,我正在尝试从服务器加载我的图像(现在我使用的是localhost 10.0.2.2)。
我正在尝试调整此git repo中的代码: https://github.com/thest1/LazyList
我的gridview没有显示图像,它显示了占位符“stub”。
似乎代码正在使用下面的“else”语句:
final int stub_id=R.drawable.stub;
public void DisplayImage(String url, ImageView imageView)
{
imageViews.put(imageView, url);
Bitmap bitmap=memoryCache.get(url);
if(bitmap!=null)
imageView.setImageBitmap(bitmap);
else
{
queuePhoto(url, imageView);
imageView.setImageResource(stub_id);
}
}
编辑: 我想尝试访问我的本地主机:http://10.0.2.2/helloGridView/imgs/sample_0.jpg
有什么想法吗?