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

android裡TextView加下劃線的幾種方法總結

編輯:關於Android編程

如果是在資源文件裡:

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

如果是代碼裡:

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

代碼也可以這樣:

tvTest.getPaint().setFlags(Paint. UNDERLINE_TEXT_FLAG ); //下劃線
tvTest.getPaint().setAntiAlias(true);//抗鋸齒

以上就是小編為大家帶來的android裡TextView加下劃線的幾種方法總結全部內容了,希望大家多多支持本站~

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