Android TextView添加中划线

textView.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG);  //中划线,会有锯齿
textView.getPaint().setAntiAlias(true);

你可能感兴趣的:(Android TextView添加中划线)