0

我正在使用一个ExpandableListView小部件,它根据特定ArrayList(称为q)中的元素来扩展子视图。这工作正常。

问题是,在所有子视图下方,我想添加一个额外的视图。看起来这应该很简单:在适配器的getChildrenCount()方法中,我添加1了相关ArrayList. 然后,在该getChildView()方法中,我使用了具有 2 种情况的 switch(位置)语句:

  • 一种默认情况,它为 ArrayList 中的每个对象扩展常规子视图
  • 案例:-1,创建特殊视图(目前我只是使用 a TextView),放置在底部。

但是,我IndexOutOfBounds在适配器上遇到错误,大概是因为我没有正确编码对getChildrenCount()和/或getChildView()方法的更改。我怀疑它正在寻找另一个数组元素(不存在),而不是将特殊视图膨胀为最后一个孩子。

这是适配器的getChildView()和方法的代码。getChildrenCount()如果您需要查看适配器的完整代码,请告诉我。

@Override
public View getChildView(int groupPos, int childPos, boolean arg2, View convertView,
        ViewGroup arg4) {
    if (convertView == null) {
        switch (childPos) {
        case -1:
            TextView post = new TextView(null);
            post.setText("post an answer");
            post.setTextColor(Color.BLUE);
            convertView = post;
            break;
        default:
            convertView = getLayoutInflater().inflate(R.layout.answerbox, null);
        }

        TextView ansText = (TextView)convertView.findViewById(R.id.answerText);
        TextView ansAuthor = (TextView)convertView.findViewById(R.id.answerAuthor);
        TextView ansUV = (TextView)convertView.findViewById(R.id.answerUpvotes);

        ansText.setText(q.get(groupPos).answers.get(childPos).text);
        ansAuthor.setText(q.get(groupPos).answers.get(childPos).author);
        ansUV.setText(Integer.toString(R.id.answerUpvotes));
    }
    return convertView;
}

@Override
public int getChildrenCount(int groupPosition) {
    return q.get(groupPosition).answers.size() + 1;
}

在以下IndexOutOfBounds行引发错误:

ansText.setText(q.get(groupPos).answers.get(childPos).text);

更新的代码(现在工作):

        @Override
    public View getChildView(int groupPos, int childPos, boolean arg2, View convertView,
            ViewGroup arg4) {
        if (convertView == null){
        //switch (childPos){
        if (childPos == q.get(groupPos).answers.size()){
            convertView = getLayoutInflater().inflate(R.layout.answerbox, null);            

            TextView ansText = (TextView)convertView.findViewById(R.id.answerText);
            TextView ansAuthor = (TextView)convertView.findViewById(R.id.answerAuthor);
            TextView ansUV = (TextView)convertView.findViewById(R.id.answerUpvotes);

            ansText.setText("POST NEW");                    
            ansUV.setText(Integer.toString(R.id.answerUpvotes));
        }
        else{
        convertView = getLayoutInflater().inflate(R.layout.answerbox, null);            

        TextView ansText = (TextView)convertView.findViewById(R.id.answerText);
        TextView ansAuthor = (TextView)convertView.findViewById(R.id.answerAuthor);
        TextView ansUV = (TextView)convertView.findViewById(R.id.answerUpvotes);

        ansText.setText(q.get(groupPos).answers.get(childPos).text);
        ansAuthor.setText("by " + q.get(groupPos).answers.get(childPos).author);                    
        ansUV.setText(Integer.toString(R.id.answerUpvotes));
        }
        }
        return convertView;
    }

    @Override
    public int getChildrenCount(int groupPosition) {
        return q.get(groupPosition).answers.size()+1;
    }
4

2 回答 2

1

你有问题case -1

Android 不知道您的最后一个视图是“假的”,即它不是实际元素。其实,childPosnever-1!您对最后一个孩子的情况应该是:

if (childPos == q.get(groupPos).answers.size()) {
    // last view
} else {
    // regular view
}

您还有一个稍后会发现的问题:

convertView != null. 这会经常发生,您应该为此做好准备。当列表项视图被列表视图小部件回收时就是这种情况。在这种情况下,您应该设置它的值,而不是创建新的项目视图。

于 2013-02-06T04:02:51.233 回答
0

q.get(groupPos)问题是answers.get(childPos)元素尚未在这些位置初始化

IndexOutOfBound当您尝试访问ArrayListat 位置的元素n并且没有在该位置初始化任何元素时引发异常

于 2013-02-06T04:02:03.777 回答