Where should I place the onClickListener on a Custom ListView?
I am making a custom ListView of rows containing a CheckBox and a TextView . Before I used custom ListViews with SimpleCursorAdapter, my onListItemClick() worked fine. I've read I have to add an onClickListener to my TextViews but WHERE? And WHY? I am still extending ListActivity and passing an Adapter to setListAdapter(listedPuzzleAdapter); , am I not? public class PuzzleListActivity extends ListActivity { private PuzzlesDbAdapter mDbHelper; private Cursor puzzlesCursor; private ArrayList<ListedPuzzle> listedPuzzles = null; private ListedPuzzleAdapter listedPuzzleAdapter; private class