-1

我见过很多例子,但没有一个是根据我的问题...在我的情况下,我有一个带有自定义适配器的自定义列表视图,checkboxex 主要是隐藏的,当单击选项菜单按钮时,复选框变得可见并且可聚焦性也设置为 true并且 listview 不再接收列表项单击侦听器...我也有代码来保存SparseBooleanArray中复选框的状态,但最大的问题是在getView()中,因为它没有调用复选框检查,所以检查状态被错误地保存例如,如果我的列表视图中 首先有5 个项目...来自公共视图 getView(int position,View convertView,ViewGroup parent)的位置将是 6 因为最后一项将在位置 6.so 在我的代码中

@Override
    public View getView(final int position,View convertView,ViewGroup parent)
    {
        //currentPosition=position;
        Log.v("Position",""+position);
        Log.v("ConvertView", ""+convertView);
        View row=convertView;

        if(row==null)
        {
            LayoutInflater inflater=((Activity)context).getLayoutInflater();
            row=inflater.inflate(layoutResourceId, parent,false);
            holder=new Feedbacks();
            holder.lvGuestName=(TextView)row.findViewById(R.id.guestName);
            holder.checkBox=(CheckBox)row.findViewById(R.id.clearCheck);

            holder.checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener()
            {
                @Override
                public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
                {
                    if(isChecked)
                    {                           
                        checks.put(position, true);
                        System.out.println("checking at pos:"+position);
                    }
                    else
                    {                           
                        checks.put(position, false);
                        System.out.println("unchecking at pos:"+position);
                    }

                }                   

            });


            row.setTag(holder);

        }       
        else
        {               
            holder=(Feedbacks)row.getTag();

        }

        if(showCheckbox)
        {
            holder.checkBox.setVisibility(View.VISIBLE);        
        }
        else
        {
            holder.checkBox.setVisibility(View.GONE);
        }
        holder.lvGuestName.setText(feedbackList.get(position).getGuestName());
        holder.checkBox.setChecked((checks.get(position)));
        System.out.println("seting check at pos:"+position);    
        return row;                                     

    }

}                   

现在, 即使我点击0 位置项目,它也会得到位置为6 我知道它,因为当复选框被选中/取消选中时,getView()将不会被调用,因此不会得到相应的位置......我知道我可以很容易地在 listitem 上单击复选框可聚焦性 false但我很想学习新事物,这就是为什么只想知道是否有人知道根据我的方式如何获得在列表视图中选中的相应复选框的位置...任何形式的帮助对我来说都是最感激和最有价值的...在此先感谢if(isChecked) {
checks.put(position, true); System.out.println("checking at pos:"+position); }
checks.put(position,true);

4

1 回答 1

1

在您的代码中,如果条件更改了您的代码,例如将 OnCheckedChangeListener 更改为 onClickListener,则您有错误。

 @Override
    public View getView(final int position,View convertView,ViewGroup parent)
    {
        View row=convertView;
        Feedbacks holder = null;

        if(row==null)
        {
            LayoutInflater inflater=((Activity)context).getLayoutInflater();
            row=inflater.inflate(layoutResourceId, parent,false);
            holder=new Feedbacks();
            row.setTag(holder);
        }       
        else
        {               
            holder=(Feedbacks)row.getTag();
        }

        holder.lvGuestName=(TextView)row.findViewById(R.id.guestName);
        holder.checkBox=(CheckBox)row.findViewById(R.id.clearCheck);

        holder.checkBox.setOnClickListener(new OnClickListener()
        {
            @Override
            public void onClick(View v)
            {
                if(holder.checkBox.isChecked())
                {                           
                    checks.put(position, true);
                    System.out.println("checking at pos:"+position);
                }
                else
                {                           
                    checks.put(position, false);
                    System.out.println("unchecking at pos:"+position);
                }

            }
        });

        if(showCheckbox)
        {
            holder.checkBox.setVisibility(View.VISIBLE);        
        }
        else
        {
            holder.checkBox.setVisibility(View.GONE);
        }

        holder.lvGuestName.setText(feedbackList.get(position).getGuestName());
        holder.checkBox.setChecked((checks.get(position)));
        System.out.println("seting check at pos:"+position);    
        return row;                                     

    }
于 2012-06-13T09:48:14.763 回答