textview 下划线 博客分类: android androidtextviewunderline下划线html
程序员文章站
2024-03-25 19:00:52
...
第一种:
textView.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG);//设置下划线
//getpaint方法中有很多设置text字体的方法
第二种:
textView.setText(Html.fromHtml("<u>我有下划线</u>"));
第三种:在资源文件里实现:
<resources>
<string name="hello"><u>phone: 1390123456</u></string> <string name="app_name">MyLink</string>
</resources>
<resources> <string name="hello"><u>phone: 1390123456</u></string> <string name="app_name">MyLink</string>
</resources>
textView.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG);//设置下划线
//getpaint方法中有很多设置text字体的方法
第二种:
textView.setText(Html.fromHtml("<u>我有下划线</u>"));
第三种:在资源文件里实现:
<resources>
<string name="hello"><u>phone: 1390123456</u></string> <string name="app_name">MyLink</string>
</resources>
<resources> <string name="hello"><u>phone: 1390123456</u></string> <string name="app_name">MyLink</string>
</resources>
上一篇: html(jsp)中