欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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>