Попробуйте назначить идентификаторы для TextViews, а затем используйте findViewById, чтобы найти их в представлении для элемента строки, по которому щелкнули. Например:
public void onItemClick(AdapterView<?> parent, View child, int position, long id) {
TextView titleTextView = (TextView)child.findViewById(R.id.textview_title);
TextView subtitleTextView = (TextView)child.findViewById(R.id.textview_subtitle);
TextView dateTextView = (TextView)child.findViewById(R.id.textview_date);
// Do the rest of your processing here
}