If I have a ClickableSpan in a TextView that works fine when LinearLayout in a ScrollView:
<ScrollView> <LinearLayout> ... ... <TextView w/ ClickableSpan /> ... ... </LinearLayout> </ScrollView>
why ClickableSpan will not work in the same configuration as above, but inside TableLayout and TableRow:
<ScrollView> <LinearLayout> ... ... <TableLayout> ... ... <TableRow> ... ... <TextView w/ ClickableSpan /> ... ... </TableRow> ... ... </TableLayout> ... ... </LinearLayout> </ScrollView>
source share