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


评论
1 楼 twins-wolf 2011-02-22  
widget中只能使用前者,后者不可以;activity两种方式都能用。

你可能感兴趣的:(android,String,resources)