0

嗨,我想写一个像“折扣价”这样的词,然后用直线(不是图片)将其剪切,然后在“折扣价”下方写 -> 新的折扣价而不剪切它

4

1 回答 1

2

这是一个示例: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);
于 2012-05-04T19:27:36.893 回答