当前位置:   article > 正文

android里TextView加下划线_android textview下划线

android textview下划线

在开发中一般有协议的地方就要求加下划线。

android里TextView加下划线有下面三种方式:

1、如果是在资源文件里:

 <resources>
    <string name="hello"><u>phone:0123456</u></string>
    <string name="app_name">MyLink</string>
</resources>
  • 1
  • 2
  • 3
  • 4

2、代码里:

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

3、代码里

tvTest.getPaint().setFlags(Paint. UNDERLINE_TEXT_FLAG ); //下划线
tvTest.getPaint().setAntiAlias(true);//抗锯齿
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/647988
推荐阅读
相关标签
  

闽ICP备14008679号