龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 移动开发 > Android开发 >

android TextView加下划线的方法

时间:2014-06-13 15:56来源:网络整理 作者:网络 点击:
分享到:
这篇文章主要介绍了android TextView加下划线的方法,大家可以在项目代码里试试

如果是在资源文件里,可以这样写.

代码如下:

< resources >  
    < string   name = "hello" > < u > phone: 1390123456 </ u > </ string >  
    < string   name = "app_name" > MyLink </ string >  
</ resources >

代码如下:

 <resources>
    <string name="hello"><u>phone: 1390123456</u></string>
    <string name="app_name">MyLink</string>
</resources>

如果是代码这样写

代码如下:

TextView textView = (TextView)findViewById(R.id.testView);  
textView.setText(Html.fromHtml("<u>" + "hahaha" + "</u>" ));

精彩图集

赞助商链接