gpt4 book ai didi

android - 个性化 strikeThrough Textview

转载 作者:行者123 更新时间:2023-11-29 00:37:13 28 4
gpt4 key购买 nike

我用它来浏览 textView

textView.setPaintFlags(textView.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);

但现在我想个性化颜色并将其旋转 45° 以适合内容的对角线。

我绑的是什么:

虽然我想扩展 textview 小部件并重写 onDraw 方法..但我是设计的初学者...

那么对于如何在 textView 上绘制红色(颜色)旋转线有什么帮助吗?

最佳答案

adding to Mayani's response

@Override
protected void onDraw(Canvas canvas) {
Paint paint = new Paint();
paint.setColor(strikeThroughColor);
paint.setStyle(Paint.Style.FILL);
paint.setFakeBoldText(true);
paint.setStrikeThruText(true);
paint.setStrokeWidth(strikeThroughWidth);
paint.setFlags(Paint.ANTI_ALIAS_FLAG);
super.onDraw(canvas);
float width = getWidth();
float height = getHeight();
canvas.drawLine(width / 10, height / 10, (width - width / 10), (height - height / 10), paint);
}

关于android - 个性化 strikeThrough Textview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11846253/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com