I am unable to extend my activity to listactivity. help needed

后端 未结 3 1776
感动是毒
感动是毒 2021-01-22 12:10

I am unable to extend my activity to listactivity. I want to extend it to listactivity and add onclicklistener to the list items.

public class MainActivity exten         


        
3条回答
  •  甜味超标
    2021-01-22 12:44

    implement OnItemClickListener

    public class MainActivity extends ListActivity implements OnItemClickListener
    {
       //your code;
    
        @Override
    public void onItemClick(AdapterView arg0, View arg1, int pos, long arg3) {
        // TODO Auto-generated method stub
        results.get(pos);  //this will give you the value in the clicked list item as per your code
    }
    }
    

提交回复
热议问题