Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android TextView加下劃線的方法

android TextView加下劃線的方法

編輯:關於Android編程

如果是在資源文件裡,可以這樣寫.
復制代碼 代碼如下:
< 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>

如果是代碼這樣寫
復制代碼 代碼如下:
TextView textView = (TextView)findViewById(R.id.testView);  
textView.setText(Html.fromHtml("<u>" + "hahaha" + "</u>" ));

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved