1

我可以将图像添加到我的ListView并且它们可以显示,但是如果列表中的项目超过 8 个,则会ListView显示该项目的错误图像。这是我的newView()方法:

public View newView(Context context, Cursor cursor, ViewGroup parent){
    final LayoutInflater inflater = LayoutInflater.from(context);
View view = inflater.inflate(layout, parent, false);
try{
        int count = cursor.getCount();
        String image = cursor.getString(cursor.getColumnIndex(RecipeClasses.Recipe.RECIPE_IMAGE));
        String recipe_name = cursor.getString(cursor.getColumnIndex(RecipeClasses.Recipe.RECIPE_NAME));

        Uri path = Uri.parse(image);
        TextView recipe_txt = (TextView) view.findViewById(R.id.txt_recipe_row);
        ImageView img = (ImageView) view.findViewById(R.id.img_view_recipe);
        if (new File(image).exists()) {
            ImageResizer img_W = new ImageResizer(context, img.getMeasuredWidth(), img.getMeasuredHeight());
            img_W.loadImage(image, img);
        } else {
            ImageResizer img_W = new ImageResizer(context, img.getMeasuredWidth(), img.getMeasuredHeight());
            img_W.loadImage(path, img);
            img.setImageURI(path);
        }

        if (recipe_txt != null){
            recipe_txt.setText(recipe_name);
        }
    } catch (Exception e){
        // TODO: handle exception
    }

    return view;
}
4

2 回答 2

2

我假设您的 newView 类似于 getView 方法。您确定要为第 9 项获取的图像可用吗?

尝试将 Cursor 处理为 ArrayList ,这样更容易管理以确定确切的问题。

还要检查项目的新添加图像的路径格式,因为在尝试将它们分配到指定路径时它们可能不正确。

于 2012-10-11T17:21:20.740 回答
0

目前它的设置方式意味着每次运行适配器时它都会膨胀一个新视图。这是昂贵的,尤其是图像。

通过此检查重用初始视图:

View v;
if (view == null) {
    view = inflater.inflate(layout, parent, false);
}

这样布局只会膨胀一次并重复使用。

于 2012-10-11T16:08:08.827 回答