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
Implement click listener for both when you initialize that view
viewHolder.sms_from_row.setOnClickListener(new OnClickListener(){ public void onClick(View view){ // Todo thing } }); viewHolder.sms_to_row.setOnClickListener(new OnClickListener(){ public void onClick(View view){ // Todo thing } });