作者:raz4150266 | 来源:互联网 | 2023-08-17 17:59
第一种,在strings.xml 文件中实现
| 忘记密码
第二种,在代码中动态指定文字forgotpwdTxt = (TextView) thisView.findViewById(R.id.diary_forget_pwd);forgotpwdTxt.setText(Html.fromHtml(""+"| 忘记密码"+""));
第三种,在代码中,直接修改TextView的属性forgotpwdTxt = (TextView) thisView.findViewById(R.id.diary_forget_pwd);
forgotpwdTxt.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG );
forgotpwdTxt.getPaint().setAntiAlias(true);//抗锯齿,不知效果如何