Android textView中划线

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android textView中划线相关的知识,希望对你有一定的参考价值。

String string = "市场价:¥158.00";
TextView textView = (TextView) findViewById(R.id.textView);
SpannableString sp = new SpannableString(string);
sp.setSpan(new StrikethroughSpan(), 0, string.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(sp);

  

以上是关于Android textView中划线的主要内容,如果未能解决你的问题,请参考以下文章

Android TextView 添加下划线的几种方式

以编程方式在android中将下划线文本设置为TextView

片段中的TextView在Android Studio中返回Null

Android textView中划线

如何在android中删除textview的下划线

如何在 Android TextView 中将字体样式设置为粗体、斜体和下划线?