ClickableSpan not ... Click

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> 
+6
source share

Source: https://habr.com/ru/post/907867/


All Articles