1. 程式人生 > >Android TextView加下劃線的幾種方式

Android TextView加下劃線的幾種方式

資源 pan int res line log phone findview view

如果是在資源文件裏:

 <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加下劃線的幾種方式