首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

TextView加上划线、粗体

2012-07-03 
TextView加下划线、粗体如果是在资源文件里,可以这样写Java代码 :resourcesstring namehellouphon

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

Java代码 :
<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>"));  


粗体:

TextView text = new TextView(context);
text.getPaint().setFakeBoldText(true);

热点排行