ArrayIndexOutOfBoundsException 与 ListView 中的多个视图的自定义 Android 适配器

Posted

技术标签:

【中文标题】ArrayIndexOutOfBoundsException 与 ListView 中的多个视图的自定义 Android 适配器【英文标题】:ArrayIndexOutOfBoundsException with custom Android Adapter for multiple views in ListView 【发布时间】:2011-02-05 11:53:18 【问题描述】:

我正在尝试为我的 ListView 创建一个自定义适配器,因为列表中的每个项目都可以有不同的视图(链接、切换或单选组),但是当我尝试运行使用 ListView 的 Activity 时,我收到了一个错误,应用程序停止。该应用程序面向 android 1.6 平台。

代码:

public class MenuListAdapter extends BaseAdapter 
 private static final String LOG_KEY = MenuListAdapter.class.getSimpleName();

 protected List<MenuItem> list;
 protected Context ctx;
 protected LayoutInflater inflater;

 public MenuListAdapter(Context context, List<MenuItem> objects) 
  this.list = objects;
  this.ctx = context;
  this.inflater = (LayoutInflater)this.ctx.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
 

 @Override
 public View getView(int position, View convertView, ViewGroup parent) 
  Log.i(LOG_KEY, "Position: " + position + "; convertView = " + convertView + "; parent=" + parent);
  MenuItem item = list.get(position);
  Log.i(LOG_KEY, "Item=" + item );

        if (convertView == null)  
            convertView = this.inflater.inflate(item.getLayout(), null);
        

        return convertView;
 

 @Override
 public boolean areAllItemsEnabled() 
  return false;
 

 @Override
 public boolean isEnabled(int position) 
  return true;
 

 @Override
 public int getCount() 
  return this.list.size();
 

 @Override
 public MenuItem getItem(int position) 
  return this.list.get(position);
 

 @Override
 public long getItemId(int position) 
  return position;
 

 @Override
 public int getItemViewType(int position) 
  Log.i(LOG_KEY, "getItemViewType: " + this.list.get(position).getLayout());
  return this.list.get(position).getLayout();
 

 @Override
 public int getViewTypeCount() 
  Log.i(LOG_KEY, "getViewTypeCount: " + this.list.size());
  return this.list.size();
 


我收到的错误:

    java.lang.ArrayIndexOutOfBoundsException
  at android.widget.AbsListView$RecycleBin.addScrapView(AbsListView.java:3523)
  at android.widget.ListView.measureHeightOfChildren(ListView.java:1158)
  at android.widget.ListView.onMeasure(ListView.java:1060)
  at android.view.View.measure(View.java:7703)

我知道应用程序正在从 getView 返回,并且一切似乎都井然有序。

任何关于可能导致此问题的想法都将不胜感激。

谢谢,

-丹

【问题讨论】:

嗨丹,你确定 getCount 有要显示在 ListView 上的元素总数吗? public int getCount() return this.list.size(); 他们想不出描述性较差的错误信息... 【参考方案1】:

你返回的项目视图类型

getItemViewType()&gt;= getViewTypeCount()

【讨论】:

这个很恶心。没有办法调试它。非常感谢 Romain Guy 的解释。 另外,ViewType 必须从 0 开始。 到目前为止,您的答案获得了 38 票赞成,所以这可能是一个完美的答案,但请添加更多文本来解释问题以及如何解决它。因为我仍然无法理解. 对于那些被难住的人, ViewType 必须返回一个从零开始的索引。例如 (0, 1, 2...)。就我而言,我尝试将 R.layout... 重用于 ViewType。我猜在内部 ViewType 的值被用作回收池的索引而不是键。 感谢您解释这个错误,不像 Android 开发者,他们像往常一样懒得在他们的文档中提及这个重要的花絮。【参考方案2】:

接受的答案是正确的。这就是我为避免这个问题所做的:

public enum FoodRowType 
    ONLY_ELEM,
    FIRST_ELEM,
    MID_ELEM,
    LAST_ELEM


@Override
public int getViewTypeCount() 
    return FoodRowType.values().length;


@Override
public int getItemViewType(int position) 
    return rows.get(position).getViewType();  //returns one of the above types

【讨论】:

只有在getItemViewType 不返回 int 的情况下才会很好【参考方案3】:

getItemType 值错误时会出现问题。 这个值应该是一个整数,应该是从 0 到 getViewTypeCount()-1。

【讨论】:

【参考方案4】:

原因,很可能是因为 getItemViewType 方法返回了错误的值! 列表视图中的每一行都是一个视图。浏览时 getItemViewType 达到的数量超过了 View 的数量。

怎么办?如何避免问题?

首先确定列表视图中首先显示的视图(行)。滚动时使用模块方程

    @Override
    public int getItemViewType(int position) 
        return choseType(position);//function to use modular equation
    
    @Override
    public int getViewTypeCount() 
        return 10;
    

在这个例子中,有十个视图(10 行)。

private  int choseType(int position)
    if(position%10==0)
        return 0;
    else if(position%10==1)
        return 1;
    else if(position%10==2)
        return 2;
    else if(position%10==3)
        return 3;
    else if(position%10==4)
        return 4;
    else if(position%10==5)
        return 5;
    else if(position%10==6)
        return 6;
    else if(position%10==7)
        return 7;
    else if(position%10==8)
        return 8;
    else
        return 9;



重要

一些用户在另一个关于***的问题上提到了该方法

public int getViewTypeCount() 和 public int getItemViewType(int position) 修复像 Tooglebutton 一样自动启用状态检查 true on scrooling..这是大错误。如果你不想在 scrool 上自动启用就做

toogleButton.setChecked(false);

关于 getView 覆盖方法。

【讨论】:

以上是关于ArrayIndexOutOfBoundsException 与 ListView 中的多个视图的自定义 Android 适配器的主要内容,如果未能解决你的问题,请参考以下文章