美文网首页
android里TextView加下划线的几种方式

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

作者: wtfysa | 来源:发表于2016-12-15 11:14 被阅读115次

android里TextView加下划线的几种方式
如果是在资源文件里:

<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加下划线的几种方式

      本文链接:https://www.haomeiwen.com/subject/crzurttx.html