您好,我想写一个像“折扣价”这样的字,并用直线(不是图像)剪下来,然后写下“折扣价” - >新的折扣价格没有削减它
答案 0 :(得分:1)
以下是来自http://fupeg.blogspot.com/2010/01/strikethrough-android.html
的示例TextView someLabel = (TextView) findViewById(R.id.some_label);
someLabel.setText(someDynamicString);
someLabel.setPaintFlags(someLabel.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);