如果我在TextView中有一个ClickableSpan,它在ScrollView中的LinearLayout时工作正常:
<ScrollView>
<LinearLayout>
...
...
<TextView w/ ClickableSpan />
...
...
</LinearLayout>
</ScrollView>
为什么ClickableSpan不能与上面相同的配置工作,而是在TableLayout和TableRow中:
<ScrollView>
<LinearLayout>
...
...
<TableLayout>
...
...
<TableRow>
...
...
<TextView w/ ClickableSpan />
...
...
</TableRow>
...
...
</TableLayout>
...
...
</LinearLayout>
</ScrollView>