读书人

TextView 加上划线

发布时间: 2012-07-28 12:25:13 作者: rapoo

TextView 加下划线
如果是在资源文件里,可以这样写.

Xml代码

<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>
如果是代码这样写

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

读书人网 >移动开发

热点推荐