android TextView加下划线的方法

内容摘要
如果是在资源文件里,可以这样写.复制代码 代码如下:< resources > < string name = "hello" > < u > phone: 1390123456 </ u > </ string > < string name
文章正文

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

复制代码 代码如下:

< 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>" ));


代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!