0

我有 ListActivity,我正在使用自定义 CursorAdapter。

在列表的每个项目中,我还有复选框......

现在我的列表屏幕上有一个烫发按钮,当你按下它时,

它应该找到所有被“选中”的复选框,并对它的复选框被“选中”的项目进行一些操作。

如何检索所有已检查的?

我已经完成了focusable:false,所以我可以使用OnClickListener,但我不知道这还能走多远……谢谢,

一些代码:这是在我的 ListActivity 类中:

 final String columns[] = new String[] { MyUsers.User._ID,
                MyUsers.User.MSG, MyUsers.User.LOCATION };

          int[] to = new int[] { R.id.toptext,   R.id.bottomtext,R.id.ChkBox,
                R.id.Location};

          Uri myUri = Uri.parse("content://com.idan.datastorageprovider/users");

          Cursor cursor = getContentResolver().query(myUri, columns, null, null, null);  

          startManagingCursor(cursor);  

           ListCursorAdapter myCursorAdapter=new ListCursorAdapter(this,R.layout.listitem, cursor, columns, to);

           this.setListAdapter(myCursorAdapter);

这是我的自定义光标适配器类:

public class ListCursorAdapter extends SimpleCursorAdapter

{

         private Context context;
    private int layout;

    public ListCursorAdapter(Context context, int layout, Cursor c,
            String[] from, int[] to)
    {
        super(context, layout, c, from, to);

        this.context = context;

        this.layout = layout;

    }

    @Override
    public View newView(Context context, Cursor cursor, ViewGroup parent)
    {

        Cursor c = getCursor();

        final LayoutInflater inflater = LayoutInflater.from(context);
        View v = inflater.inflate(layout, parent, false);
                   return v;
          }

@Override

    public void bindView(View v, Context context, Cursor c)
    {
        TextView topText = (TextView) v.findViewById(R.id.toptext);
        if (topText != null)
        {
            topText.setText("");
        }

        int nameCol = c.getColumnIndex(MyUsers.User.MSG);
        String name = c.getString(nameCol);
        TextView buttomTxt = (TextView) v.findViewById(R.id.bottomtext);
        if (buttomTxt != null)
        {
            buttomTxt.setText("Message: "+name);
        }

        nameCol = c.getColumnIndex(MyUsers.User.LOCATION);
        name = c.getString(nameCol);
        TextView location = (TextView) v.findViewById(R.id.Location);
        if (locationLinkTxt != null)
        {
            locationLinkTxt.setText(name);
        }

        }
4

1 回答 1

0
        //Modify to meet your needs
        String[] from = new String[]{ YourDbAdapter.KEY_WORDS_ROWID, YourDbAdapter.KEY_WORDS_ROWID};
        int[] to = new int[]{ R.id.row_item_checkbox};

        mAdapter = new SimpleCursorAdapter(this, R.layout.row_item_with_checkbox, yourDbCursor, from, to);


      mAdapter.setViewBinder(new SimpleCursorAdapter.ViewBinder() {

       @Override
       public boolean setViewValue(View view, Cursor cursor, int columnIndex) {


        if(view.getId() == R.id.myCheckbox )
        { 

         CheckBox cb = (CheckBox) view;
         cb.setOnClickListener(new OnClickListener() {

          @Override
          public void onClick(View v) {

           final long id = cursor.getLong(columnIndex); //Your row id
                               //You can do the necessary work here such as adding to an List or somehting

          }
         });


         return true; 
        } 

        return false;
       }


      });
于 2010-02-14T01:51:04.893 回答