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