gpt4 book ai didi

android - 如何在android中旋转按钮的文本?

转载 作者:行者123 更新时间:2023-11-29 00:51:39 27 4
gpt4 key购买 nike

我想旋转按钮上的文字,但我整天都做不到。

我试过自定义垂直按钮,但它没有使按钮中的文本居中。我在 java 和 xml 代码中尝试了所有重力选项。

enter image description here

这是我的 VerticalButton 代码:

public class VerticalButton extends Button{

public VerticalButton(Context context, AttributeSet attrs){
super(context, attrs);
}

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
super.onMeasure(heightMeasureSpec, widthMeasureSpec);
setMeasuredDimension(getMeasuredHeight(), getMeasuredWidth());
}

@Override
protected void onDraw(Canvas canvas){
TextPaint textPaint = getPaint();
textPaint.setColor(getCurrentTextColor());
textPaint.drawableState = getDrawableState();

canvas.save();
canvas.translate(0, getHeight());
canvas.rotate(-90);

canvas.translate(getCompoundPaddingLeft(), getExtendedPaddingTop());
getLayout().draw(canvas);
canvas.restore();
}
}

我尝试使用 android:rotation="-90" 旋转 Button

这没有按照我想要的方式工作。因为它不是在编辑背景大小。

enter image description here

我尝试使用 Button 和 TextView 的相对布局,但我无法将 TextView 置于 Button 之上

提前致谢。

最佳答案

我找到了一个解决方案。

我编辑了 onDraw 函数。首先使用 getTextBounds()

获取文本的宽度和高度

getTextBounds() 中,将 Button 的文本作为参数。

然后像下面这样编辑 canvas.translate() 函数。它使按钮中的文本居中。

@Override
protected void onDraw(Canvas canvas) {
TextPaint textPaint = getPaint();
textPaint.setColor(getCurrentTextColor());
textPaint.drawableState = getDrawableState();
Rect bounds = new Rect();
textPaint.getTextBounds("ENTER",0,"ENTER".length(), bounds);

Log.e("TAG", "onDraw: "+ bounds.width() + " "+bounds.height());
canvas.save();

canvas.translate(getWidth()/2 - bounds.height(), (float) (getHeight()/2 + bounds.width()/1.5));
canvas.rotate(-90);

getLayout().draw(canvas);
canvas.restore();
}

关于android - 如何在android中旋转按钮的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59007581/

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