首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

textview 上划线

2012-07-03 
textview 下划线第一种:textView.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG)//设置下划线//getpain

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>

热点排行