android里TextView加下划线的几种方法总结
时间:2021-06-25 09:25:44|栏目:Android代码|点击: 次
如果是在资源文件里:
<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开发之CheckBox的简单使用与监听功能示例
栏 目:Android代码
本文标题:android里TextView加下划线的几种方法总结
本文地址:http://www.codeinn.net/misctech/147582.html