I have a ListView that contains a TextView in each row besides a number of other views. The TextView renders html content which may contain links.
The below code appear
Focusable views inside a ListView item will disable the ability to select ListView items. Applying android:focusable="false"
to the TextView will allow OnItemClick to work again. You may also need to apply android:focusableInTouchMode="false"
to make the trackball ignore the links because clicking the trackball over a focusable element in a ListView can both click the link and the ListView item.