读书人

textview 上划线

发布时间: 2012-07-03 13:37:43 作者: rapoo

textview 下划线
第一种:
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>

读书人网 >移动开发

热点推荐