所以现在我加入了picasso
和sonce
,然后每当我想做任何事情时,我都经常会失去记忆errors
。这可能是因为picasso
缓存图像?我完全不知道为什么会这样,以及如何解决......有任何经验吗?
adapters
的建议更改我的自定义picasso
以接收图片网址并将其直接加载到imageview
,而不是使用保存为bitmap
的绕道而非。忽视了暗示,不知道为什么。
这是适配器:
public class ImageTextListViewAdapter extends ArrayAdapter<RowItem> {
Context context;
public ImageTextListViewAdapter(Context context, int resourceId,
List<RowItem> items) {
super(context, resourceId, items);
this.context = context;
}
/*private view holder class*/
private class ViewHolder {
ImageView imageView;
TextView txt;
TextView id;
}
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder = null;
RowItem rowItem = getItem(position);
LayoutInflater mInflater = (LayoutInflater) context
.getSystemService(Activity.LAYOUT_INFLATER_SERVICE);
if (convertView == null) {
convertView = mInflater.inflate(R.layout.list_item_friends, null);
holder = new ViewHolder();
holder.id = (TextView) convertView.findViewById(R.id.text_view_id_friends);
holder.txt = (TextView) convertView.findViewById(R.id.list_item_friends_textview);
holder.imageView = (ImageView) convertView.findViewById(R.id.friends_image);
convertView.setTag(holder);
} else
holder = (ViewHolder) convertView.getTag();
holder.txt.setText(rowItem.getText());
String url = getItem(position).getUrl();
Picasso.with(context).load(url).into(holder.imageView);
holder.id.setText(rowItem.getId());
return convertView;
}
}
我有一个listview
,我在json
中从asynctask
(通过ListView
)的每个用户加载名称。
此外,用户图像也必须从服务器加载。这是通过第二个ajax
请求发生的。当我获得带有保存图像的网址的json
以从服务器获取图像时,对于每个图像,通过asynctask
发出请求。这使得listview
的负载持续很长时间,因此其他活动将保持排队,直到此任务完成。
我发现了如何在内存缓存中保存图像。但这并不能解决问题,因为只有在我将应用程序放在后台时才会保存图像。
listview
包含一个名为RowItem的custom adapter
,其中包含imageview
和两个listviews
。
有什么建议吗?我正在为此工作约1天半......
谢谢你!继承我的Async任务,用于加载图片。
public class ImageLoadTask extends AsyncTask<Void, Void, Bitmap> {
private final String LOG_TAG = ImageLoadTask.class.getSimpleName();
String url, userId;
String[] items;
BufferedReader reader = null;
public ImageLoadTask(String url, String userId, String[] items) {
this.url = url;
this.userId = userId;
this.items = items;
}
private String getImageUrlFromJson(String imageJson) throws JSONException {
JSONObject imageJsonOutput = new JSONObject(imageJson);
imageJsonUrl = imageJsonOutput.getString("imageUrl");
Log.v(LOG_TAG, imageJsonUrl);
return imageJsonUrl;
}
@Override
protected Bitmap doInBackground(Void... params) {
String imageJson = null;
try {
URL urlConnection = new URL(url + userId);
HttpURLConnection connection = (HttpURLConnection) urlConnection
.openConnection();
connection.setDoInput(true);
connection.connect();
InputStream input = connection.getInputStream();
StringBuffer buffer = new StringBuffer();
if (input == null) {
// Nothing to do.
//jsonStr = null;
return null;
}
reader = new BufferedReader(new InputStreamReader(input));
String line;
while ((line = reader.readLine()) != null) {
// Since it's JSON, adding a newline isn't necessary (it won't affect parsing)
// But it does make debugging a *lot* easier if you print out the completed
// buffer for debugging.
buffer.append(line + "\n");
}
if (buffer.length() == 0) {
return null;
}
imageJson = buffer.toString();
} catch (Exception e) {
e.printStackTrace();
}
try {
String imageUrl = getImageUrlFromJson(imageJson);
URL url = new URL(imageUrl);
bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream());
addBitmapToMemoryCache(userId, bmp);
return bmp;
}
catch(Exception e) {
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(Bitmap result) {
super.onPostExecute(result);
bmp = result;
item = new RowItem(bmp, item[0], item[1], item[2]);
mDiscoverAdapter.add(item);
}
}
答案 0 :(得分:3)
您正试图通过不使用现有的图像加载库来重新发明轮子。看看一些顶级库:
如果您仍然决定自己构建它。您需要创建一个缓存系统,以根据需要从内存/磁盘中进行保存/加载。还要注意泄漏视图,因为这会因图像加载(特别是列表或网格)而变得非常棘手。
官方的android文档有一个关于Loading/Caching Images的精彩教程。仔细阅读并查看他们提供的示例应用程序,以帮助您入门。