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

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加下划线的几种方法总结全部内容了,希望大家多多支持~