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