欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

android TextView加下劃線的方法

 更新時(shí)間:2013年11月18日 16:46:17   投稿:zxhpj  
這篇文章主要介紹了android TextView加下劃線的方法,大家可以在項(xiàng)目代碼里試試

如果是在資源文件里,可以這樣寫.

復(fù)制代碼 代碼如下:

< resources >  
    < string   name = "hello" > < u > phone: 1390123456 </ u > </ string >  
    < string   name = "app_name" > MyLink </ string >  
</ resources >

復(fù)制代碼 代碼如下:

 <resources>
    <string name="hello"><u>phone: 1390123456</u></string>
    <string name="app_name">MyLink</string>
</resources>

如果是代碼這樣寫

復(fù)制代碼 代碼如下:

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

相關(guān)文章

最新評論