gpt4 book ai didi

android - 位图加载到设备中

转载 作者:行者123 更新时间:2023-11-29 16:10:09 26 4
gpt4 key购买 nike

在我的应用程序中,我使用了延迟加载 技术。我引用了 this tutorial .在模拟器(android 2.1)中图像正在加载,但在设备(android 2.3.4)中图像未加载。只有 android 图标正在加载。

我的getview代码:

if (convertView   == null) {
//this should only ever run if you do not get a view back
LayoutInflater inflater = (LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.homelistrow, null);

holder = new ViewHolder();
image = (ImageView) convertView.findViewById(R.id.icon);
holder.text = (TextView) convertView.findViewById(R.id.name_label);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
//
imageLoader.DisplayImage(kickerimage[position], image);

// holder.image.setImageBitmap(bitmap);
////// items=itemsarray[position];
holder.text.setText(itemsarray[position]);

我完全不明白为什么会在设备中发生这种情况。请帮助解决这个问题。

最佳答案

这对我有用。试试这个。

public View getView(int paramInt, View paramView, ViewGroup paramViewGroup)
{

View localView = ((LayoutInflater)this.topcouponpage.getSystemService("layout_inflater")).inflate(2130903044, null);
String str = localOfferCategories.getImagelink();
if (!str.trim().startsWith("http://"))
str = "http://" + str;
ImageView localImageView = (ImageView)localView.findViewById(2131099676);
this.imgloader.DisplayImage(str, localImageView);

return localView;
}
}

同时在 list 文件中授予此权限。

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

关于android - 位图加载到设备中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14118540/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com