宝剑锋从磨砺出,梅花香自苦寒来。这篇文章主要讲述Android TextView加下划线的几种方式相关的知识,希望能为你提供帮助。
【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); //抗锯齿
推荐阅读
- mybatis mapper动态代理
- Unity5.5.4使用IL2CPP构建Android真机版本
- 基于angular+bower+glup的webapp
- A query was run and no Result Maps were found for...原来是mapper.xml文件出了问题,是使用MyBatis最常见的一种错误
- Android Studio检测内存泄露和性能
- android BSP与硬件相关子系统读书笔记android BSP移植综述
- Android进程回收机制LMK(Low Memory Killer)
- 通过微信分享链接,后面被加上from=singlemessage&isappinstalled=1导致网页打不开
- unity如何在安卓端生成日志信息