I suppose you mean that how can we extract which items are checked.
That can be done using:-
SparseBooleanArray checkedItems = getListView().getCheckedItemPositions
();
You can check each item's state by using its position. So for the 0th
position, use checkedItems.get(0) and check if it is true or false.

On Jan 21, 5:10 pm, Manoj <[email protected]> wrote:
> Hi can anybody tell me exactly how can i get the the exact status of
> the listview items.(I have used checkbox as the listview item)
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to