I am using the base adapter , i have list which contains list with the text view (means left side sent items and below to that ,right side received items, i want to click o
there is onItemClickListener in android, you can use that
ListView listview = (ListView)findViewById(R.id.yourlist);
listview.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView> parent, View view, int position, long id) {
// @todo
}
});
For individual view in you list item, you can always add click listener in getView method.