赞
踩
下过如图:
// 中划线
textView.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG | Paint.ANTI_ALIAS_FLAG); // 设置中划线并加清晰
// 下划线
textView.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG);
//取消设置的线
textView.getPaint().setFlags(0); // 取消设置的的划线
我封装了几个方法 直接调用
/**
下划线
@param textView
*/
private void addButtomLine(TextView textView) {
textView.getPaint().setFlags(Paint.UNDERLINE_TEXT_FLAG);
}
/**
移除线
@param textView
*/
private void removeLine(TextView textView) {
textView.getPaint().setFlags(0); // 取消设置的的划线
}
/**<
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。