Hi,

Ive got ListActivity and i am using custom CursorAdapter.

in my list view i have items. in each item i got also a checkbox.

the listview is binded to database via CursorAdapter.

I want on a button press, to retrieve all items which thire checkboxes
status is CHECKED.

how can i retrive all the checked ones?

ive done focusable:false, so i can use OnClickListener, but i dont
know how farther then this..

but in other hand:
protected void onListItemClick(android.widget.ListView l, View v,
                int position, long id)

donesnt realy resdpond:


some code:

this is in my ListActivity class:

    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);
and this is my Custom Cursor adapter class:

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);
    }

    }

Thanks

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to