Android TextView设置下划线、删除线
程序员文章站
2023-12-23 13:07:28
...
private TextView textView;
textView.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG);//下划线
textView.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG);//删除线
textView.getPaint().setAntiAlias(true);//抗锯齿
转载于:https://www.jianshu.com/p/8754ad4ccdea