码迷,mamicode.com
首页 > 移动开发 > 详细

android里TextView加下划线的几种方式

时间:2014-07-16 21:12:01      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   文件   html   

如果是在资源文件里:

 <resources>
    <string name="hello"><u>phone:0123456</u></string>
    <string name="app_name">MyLink</string>
</resources>

 

如果是代码里:

TextView textView = (TextView)findViewById(R.id.tv_test); 
textView.setText(Html.fromHtml("<u>"+"0123456"+"</u>"));

代码也可以这样:

tvTest.getPaint().setFlags(Paint. UNDERLINE_TEXT_FLAG ); //下划线
tvTest.getPaint().setAntiAlias(true);//抗锯齿

 

android里TextView加下划线的几种方式,布布扣,bubuko.com

android里TextView加下划线的几种方式

标签:android   style   blog   color   文件   html   

原文地址:http://www.cnblogs.com/error404/p/3836225.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!