簡體   English   中英

Android ListView選中所有復選框(自定義ResourceCursorAdapter)

[英]Android ListView check all checkboxes (custom ResourceCursorAdapter)

我在活動中的自定義適配器:

private static HashMap<Integer, Boolean> checkedMap;

private class MyMediaCursorAdapter extends ResourceCursorAdapter {

    public MyMediaCursorAdapter(Context context, int layout, Cursor c) {
        super(context, layout, c);

    }

    @Override
    public View newView(Context context, Cursor cursor, ViewGroup parent) {
        View view = super.newView(context, cursor, parent);
        final RecordListItemCache cache = new RecordListItemCache();

        cache.date = (TextView)view.findViewById(R.id.dateRecorded);
        cache.checkBox = (CheckBox)view.findViewById(R.id.checkBoxView);    

        view.setTag(cache);         
        return view;
    }

    @Override
    public void bindView(View view, Context context, Cursor cursor) {
        final RecordListItemCache cache = (RecordListItemCache)view.getTag();

        final SimpleDateFormat sdf = new SimpleDateFormat("dd.MM.yyyy HH:mm:ss");
        final String dateString = sdf.format(cursor.getLong(cursor
                .getColumnIndex(MediaStore.Audio.Media.DATE_ADDED))*1000);

        final String displayName = cursor.getString(cursor
                .getColumnIndex(MediaStore.Audio.Media.TITLE));

        final int id = cursor.getInt(cursor
                .getColumnIndex(MediaStore.Audio.Media._ID));
        cache.checkBox.setOnCheckedChangeListener(null);
        Boolean chk = checkedMap.get(id);
        if (chk==null) {
            cache.checkBox.setChecked(false);
        } else {
            cache.checkBox.setChecked(chk);
        }


        cache.checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                checkedMap.put(id, isChecked);

            }
        });

        cache.checkBox.setText(displayName);
        cache.date.setText(dateString);
    }   
}

final static class RecordListItemCache {
    public CheckBox checkBox;
    public TextView date;
    public boolean checked;
}

在同一活動的onCreate中:

myMediaCursorAdapter = new MyMediaCursorAdapter(getApplicationContext(),
            R.layout.multipledeleteview, audioCurosr);
setListAdapter(myMediaCursorAdapter);

和onClick:

public void onClick(View button) {
    switch (button.getId()) {
        case R.id.buttonDeleteMultiple: {
            Collection<Integer> IDs = checkedMap.keySet();
            for (Integer id : IDs) {
                if (checkedMap.get(id)==true) {
                    RecorderUtils.delete(getApplicationContext(), id, false);
                }
            }
            checkedMap = new HashMap<Integer, Boolean>();
        }
        case R.id.buttonDeleteMultipleChooseAll: {
            int size = myMediaCursorAdapter.getCount();
            ListView lv = getListView();
            for(int i = 0; i <= size; i++) {
                lv.setItemChecked(i, true);
            }
            myMediaCursorAdapter.notifyDataSetChanged();
        }
    }
}

刪除工作正常(刪除已選中的內容)。 但是選擇全部的按鈕不會改變任何東西。

我用選中的復選框重新加載視圖...

暫無
暫無

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

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