tags:

views:

24

answers:

1

I have a list view having several items and it is multichoice list. I want to display the checked item of list view. how i can do this.can anyone help me???

A: 

Try this

m_cObjList.setOnItemClickListener( new AdapterView.OnItemClickListener() {

    public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
    // This will highlight the select view
    m_cObjAdapter.setSelected(arg2);                

  }
});
Vinayak.B