如何在Android活动中从自定义列表视图中选择所有复选框

3

我有一个自定义的列表视图,其中包含两个文本视图和一个复选框。当勾选复选框时,则将id存储在数据库中;如果取消勾选,则从数据库中删除该id。但是我想要选择所有复选框并将所有id存储到数据库中,或取消选择所有复选框并从数据库中删除所有id。请帮助我实现这个功能。以下是我的适配器代码:

public class InviteListAdapter2 extends BaseAdapter implements OnClickListener {

private static final String TAG = "GroupEditMemberListAdapter";

private LayoutInflater inflater;
private ViewHolder holder;
private List<FriendItem> list;
private Context context;
private ImageLoader imageLoader;
MessageSendingActivity msg = new MessageSendingActivity();
private String groupId;
SqliteHandle sqhandle;
//private String adminId;
int total_contacts=0;
String f_id;
int flag=0;
String chetimeslot;
ArrayList<String> currentList = new ArrayList<String>();
public static final String DELETE_MEMBER = "2";
public static final String ADD_MEMBER = "1";

public InviteListAdapter2(Context context, List<FriendItem> list, String groupId, String adminId) {
    this.context = context;
    inflater = LayoutInflater.from(context);
    this.list = list;
    imageLoader = new ImageLoader(context);
    this.groupId = groupId;
    //this.adminId = adminId;
}   

public ArrayList<String> getChekedItem()
{
    if(currentList!=null)
    return this.currentList;
    else return null;
}
@Override
public int getCount() {
    return list.size();
}

@Override
public Object getItem(int position) {
    return list.get(position);
}

@Override
public long getItemId(int position) {
    return list.indexOf(getItem(position));
}

public void refresh(List<FriendItem> list) {
    this.list = list;
    notifyDataSetChanged();
}

public List<FriendItem> getList() {
    return list;
}

View hView;

ArrayList<CheckedItem> checkbox_timeslot = new ArrayList<CheckedItem>();
@Override
public View getView(final int position, View convertView, ViewGroup parent) {

    hView = convertView;

    final FriendItem item = list.get(position);

    if (convertView == null) {

        holder = new ViewHolder();

        hView = inflater.inflate(R.layout.friendlistitem, null);
        holder.nameTextView         = (TextView) hView.findViewById(R.id.friend_name_text);
        holder.statusTextView       = (TextView) hView.findViewById(R.id.friend_count_text);
        holder.userImageView        = (ImageView) hView.findViewById(R.id.friend_image);
        holder.checkBox             = (CheckBox) hView.findViewById(R.id.chekbox);

        hView.setTag(holder);
    }
    else {
        holder = (ViewHolder) hView.getTag();
    }

    try {
            holder.nameTextView.setText(""+item.getName() + " " +item.getLname());
            holder.statusTextView.setText(""+item.getContacts());

            String path = "http://www.gbggoa.org/testproject/four/images/pic.jpg";
            path = Constant.URL  + item.getImage();
            imageLoader.displayImage(path, holder.userImageView);

            if(item.getId().equals(Sessions.getUserId(context)))
            {
                holder.checkBox.setVisibility(View.GONE);
            }
            else
            {
                holder.checkBox.setVisibility(View.VISIBLE);
            }

            if(item.isChecked())
            {
                holder.checkBox.setChecked(true);

                if(item.getId().equals(Sessions.getUserId(context)))
                {
                    hView.setBackgroundResource(R.drawable.selector_list_gray);
                }
                else
                {
                    hView.setBackgroundResource(R.drawable.selector_list_green);
                }
            }
            else
            {
                holder.checkBox.setChecked(false);
                hView.setBackgroundResource(R.drawable.selector_list);
            }   

            holder.checkBox.setTag(position);
            holder.checkBox.setOnClickListener(this);

    } catch (Exception e) {
        e.printStackTrace();
    }

    return hView;
}   

class ViewHolder
{   
    TextView nameTextView, statusTextView;
    ImageView userImageView;
    CheckBox checkBox;
}

protected void showToast(String message) {
    Toast.makeText(context, ""+message, Toast.LENGTH_SHORT).show();
}

protected void showToastLong(String message) {
    Toast.makeText(context, ""+message, Toast.LENGTH_LONG).show();
}   

@Override
public void onClick(View view) {

    final int position = (Integer) view.getTag();
    String f_id=list.get(position).getId();
    final CheckBox checkBox = (CheckBox) view.findViewById(R.id.chekbox);
    sqhandle=new SqliteHandle(context); 
    final boolean isChecked = checkBox.isChecked();
    int total=sqhandle.getCheckedCount();                       
    checkBox.setVisibility(View.GONE);
    if(isChecked)
    {
        total_contacts = total_contacts + Integer.parseInt(list.get(position).getContacts());
        sqhandle.changeCheck("1", f_id);
        Toast.makeText(context, "Selected Contacts: "+total_contacts, Toast.LENGTH_LONG).show();

    }
    else
    {
        sqhandle.changeCheck("0", f_id);
        total_contacts = total_contacts - Integer.parseInt(list.get(position).getContacts());
        Toast.makeText(context, "Selected Contacts: "+total_contacts, Toast.LENGTH_LONG).show();
    }
    sqhandle.close();
    checkBox.setVisibility(View.VISIBLE);
    list.get(position).setChecked(isChecked);
    notifyDataSetChanged();

}


}   
3个回答

3
请尝试以下操作:
  1. Add one checkbox on top of listview in your activity layout. For example a checkbox with id chkall.

  2. Add one boolean flag called checkedAll in your adapter class InviteListAdapter2 with getter & setter.

  3. Create to add/remove from database as follow:

    public void modifyFriends(List<FriendItem> fList, boolean checkedAll){
        String checkStatus = "0";   
        if(checkedAll){
            checkStatus = "1";
        }
        //sql code to change check status in database for all friends
    }
    
  4. Change getView() your adapter code little bit as follow:

    if(item.isChecked() || checkedAll)
        {
            holder.checkBox.setChecked(true);
    
            if(item.getId().equals(Sessions.getUserId(context)))
            {
                hView.setBackgroundResource(R.drawable.selector_list_gray);
            }
            else
            {
                hView.setBackgroundResource(R.drawable.selector_list_green);
            }
        }
        else
        {
            holder.checkBox.setChecked(false);
            hView.setBackgroundResource(R.drawable.selector_list);
        }
    
  5. On click of chkall checkbox, do following:

        if(checked){
            inviteListAdapter2.setCheckedAll(true);
            modifyFriends(friendsList, true); //call a db helper method to change reflect check status in db
        }else{
            inviteListAdapter2.setCheckedAll(false);
            modifyFriends(friendsList, false); //call a db helper method to change reflect check status in db
        }
        inviteListAdapter2.notifyDatasetChaged();
    

1
使用ArrayList来存储你的物品ID。
ArrayList<Integer> tcontact = new ArrayList<Integer>();
 if(isChecked)
    {
         tcontact.add(Integer.parseInt(list.get(position).getContacts()))
        sqhandle.changeCheck("1", f_id);
        Toast.makeText(context, "Selected Contacts: "+total_contacts, Toast.LENGTH_LONG).show();

    }
    else
    {
      for(int i=0;i<tcontact.size;i++) {
      if(tcontact.get(i) == Integer.parseInt(list.get(position).getContacts())) {
      tcontact.remove(i);
      sqhandle.changeCheck("0", f_id);

        Toast.makeText(context, "Selected Contacts: "+total_contacts, Toast.LENGTH_LONG).show();
}
}}

我需要添加另一个复选框,它将选中列表视图中的所有其他复选框。那么在哪里添加这个复选框呢?是在我的活动布局还是适配器布局中? - Namdev Londhe
它只是一个ArrayList,它是一个集合,用于存储您点击的项目。 - Nadir Belhaj

1

nAmDev,

我听到了你关于添加复选框来处理用户事件的建议,表示当“全选”复选框被选中时,用户想要将所有项目的复选框设置为选中状态;或者当“全选”复选框未选中或清除时,取消选择所有列表项的复选框。

所以,为了实现这个功能,你需要添加一个“全选”复选框,或者可能是一个操作栏菜单项,以便让用户执行选择列表中所有项目的操作。

在“全选”控件的点击事件处理程序中,您将获得对列表的引用,或使用Nadir B描述的ArrayList,然后循环遍历并检查每个项目。

我不确定是否有一种方法可以创建对列表的引用,然后执行类似于myList.SelectAll或myList.CheckAll的操作。

如果没有,而你想要做类似于那样的事情,你可以扩展ListView并创建自己的CheckAll或SelectAll方法,在其中你只需获取列表项的集合,并将每个列表项设置为选中状态即可。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接