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
This is actually a BUG. To resolve this you can add android:descendantFocusability="blocksDescendants" you your ListView's rows layout xml. For e.g
android:descendantFocusability="blocksDescendants"
ListView's
Source : this and this
Good Luck :)