[Android初级]如何使TextView增加下划线的方法

方法一:

在String在资源文件里添加方式如下:

 
<resources>
    <string name="hello"><u>phone: 1390123456</u></string>
</resources>
在代码中,可以写成

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

方法二:

直接在代码中这样写:

TextView mForgetPasswordTV = (TextView) findViewById(R.id.main_forgetpwd_tv);
		mForgetPasswordTV.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG);





你可能感兴趣的:([Android初级]如何使TextView增加下划线的方法)