当前位置:   article > 正文

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

androidstudio如何加下划线

1.如果在xml

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


2.如果在代码中

(1) 

  1. TextView textView = (TextView)findViewById(R.id.tv_test);
  2. textView.setText("0123456");

(2)

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

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/647975
推荐阅读
相关标签
  

闽ICP备14008679号