Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想划掉TextView. 到目前为止,我已经创建了一个Style,但我还没有看到任何关于划掉文本的内容。使用android:TextStyle,可以将文本设置为粗体、斜体和粗斜体,但显然没有别的。
TextView
Style
android:TextStyle
有没有办法定义一个Style会划掉文本的方法?或者我的问题有其他解决方案吗?
如果您的意思是删除线,请写:
textview.setPaintFlags(textview.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);