簡體   English   中英

從Android中的自定義適配器獲取復選框的ID?

[英]Get the ID of checkbox from custom adapter in android?

我有一個自定義ArrayList如下。

public class sendivitesadapter extends ArrayAdapter<Item>{
    private Context context;
    private ArrayList<Item> items;
    private qrusers qrusers;
    private LayoutInflater vi;


    public sendivitesadapter(Context context,ArrayList<Item> items) {
        super(context, 0,items);

        this.context= context;
        this.qrusers =(qrusers) context;
        this.items = items;
        vi = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    }
    @Override
    public int getCount() {
        // TODO Auto-generated method stub
        return super.getCount();
    }

    @Override
    public Item getItem(int position) {
        // TODO Auto-generated method stub
        return super.getItem(position);
    }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            View v = convertView;

            final Item i = items.get(position);

            if (i != null) {
                if(i.isSection()){
                    SectionItem si = (SectionItem)i;
                    v = vi.inflate(R.layout.checkboxlist, null);

                    v.setOnClickListener(null);
                    v.setOnLongClickListener(null);
                    v.setLongClickable(false);

                    final TextView sectionView = (TextView) v.findViewById(R.id.list_item_section_text);
                    sectionView.setText(si.getTitle());

                }else{
                    sendItem ei = (sendItem)i;
                    v = vi.inflate(R.layout.checkboxlist, null);
                    final TextView title = (TextView)v.findViewById(R.id.contactname);
                    final TextView subtitle = (TextView)v.findViewById(R.id.companyname);
                    final CheckBox checkBox=(CheckBox)v.findViewById(R.id.checboxlist);


                    if (title != null) 
                        title.setText(ei.contactname);
                    if(subtitle != null)
                        subtitle.setText(ei.companyname);

                }
            }
            return v;
        }

它看起來像下面的圖像。

在此處輸入圖片說明

我的java文件如下。

@Override
    protected void onPostExecute(String result) {
        JSONArray jarray;

        try {
            jarray= new JSONArray(result);

            name= new String[jarray.length()];
            company=new String[jarray.length()];
            for (int i=0;i<jarray.length();i++){



                JSONObject jobj = jarray.getJSONObject(i);
                name[i]=    jobj.getString("Name");
                company[i]=jobj.getString("Company");

                items.add(new sendItem(name[i], company[i], checkBox));

                adapter  = new sendivitesadapter(qrusers.this,items);
                listView.setAdapter(adapter);

現在,我從網絡服務中獲取名稱,該名稱正如上所述在列表視圖中顯示。 每個名字我都會得到一個USerID。 所以我的問題是,每當用戶以任何順序選中復選框並單擊添加用戶時,我都希望數組中選中的復選框的UserID。 我該如何實現?

聽起來這是View.setTag()的不錯的View.setTag() 您可以將每個CheckBox上的標簽設置為用戶的ID(在創建標簽時,或分配名稱和公司值)。 然后,在OnClickOnChecked類型事件中,可以調用view.getTag()來檢索當前復選框的ID。

您需要使用OnCheckedChangeListener來獲取經檢查的CheckBox ID。 該SO將為您提供幫助- 如何在自定義ListView適配器中為RadioGroup處理onCheckedChangeListener 您需要根據需要修改onCheckedChangeListener。

在適配器中,在復選框中設置位置,例如

checkBox.setTag(position);

而且我認為您必須在單擊“添加用戶”按鈕時添加選中的用戶。 因此,在單擊該按鈕時,請編寫以下代碼。

public void onClick(View v) {
    // TODO Auto-generated method stub
    String categoryArray = "";
    String[] categoryId;
    if(v == AddUser){
        int count = 0;

        for(int i = 0; i < listViewRightSlideMenu.getChildCount(); i ++){
            RelativeLayout relativeLayout = (RelativeLayout)listViewRightSlideMenu.getChildAt(i);
            CheckBox ch = (CheckBox) relativeLayout.findViewById(R.id.checkBoxCategory); //use same id of check box which you used in adapter
            if(ch.isChecked()){
                count++;
                categoryArray = categoryArray+ch.getTag()+",";

            }
        }
        if(categoryArray.length() > 0) {
        categoryArray = categoryArray.substring(0, categoryArray.length() - 1);
        String[] array = categoryArray.split(",");
        categoryId = new String[array.length];
        for(int i = 0; i< array.length; i++) {
            categoryId[i] = listCategory.get(Integer.valueOf(array[i])).getId();
        }

        for(int i = 0; i < categoryId.length; i++){
            String a = categoryId[i];
            System.out.println("category id is: "+a);
        }
        System.out.println("array position: "+categoryId);

    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM