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

TextView添加上划线

2012-09-25 
TextView添加下划线如果是在资源文件里,可以这样写?resourcesstring namehellouphone: 139012345

TextView添加下划线

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

?

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

?

?

有人说

widget中只能使用前者,后者不可以;activity两种方式都能用。

?

activity我都试过,是两者都可以

但是widget还没有试过。。。

热点排行