android里TextView加下划线的几种方法总结
程序员文章站
2024-03-03 21:40:04
如果是在资源文件里:
phone:0123456...
如果是在资源文件里:
<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加下划线的几种方法总结全部内容了,希望大家多多支持~