如果是在资源文件里,可以这样写.
<resources>
<string name="hello"><u>phone: 1390123456</u></string>
<string name="app_name">MyLink</string>
</resources>
如果是代码这样写
TextView textView = (TextView)findViewById(R.id.testView);
textView.setText(Html.fromHtml("<u>"+"hahaha"+"</u>"));
本文介绍如何在Android应用中使用HTML来格式化TextView中的文本,包括在资源文件中定义带下划线的字符串及通过代码实现文本的下划线效果。
1164

被折叠的 条评论
为什么被折叠?



