gpt4 book ai didi

android - 如何制作自定义 Edittext,使其在 android 中看起来像旋转 45 度

转载 作者:搜寻专家 更新时间:2023-11-01 07:36:06 24 4
gpt4 key购买 nike

如何制作自定义 Edittext,使其看起来像在 android 中旋转 45 度并且它应该是可编辑的,以便用户可以在该旋转的 Edittext 上输入文本。我试过了。但我没有得到任何解决方案it.Please 给一些想法来做到这一点。

最佳答案

您可以像这样尝试覆盖 EditText onDraw 方法...

@Override
protected void onDraw(Canvas canvas) {
canvas.save();
canvas.rotate(45.0f,xpivot,ypivot); //rotate around (x,y) pivot point
super.onDraw(canvas);
canvas.restore();
}

我还没有测试过这个,但我认为它应该可以工作。

关于android - 如何制作自定义 Edittext,使其在 android 中看起来像旋转 45 度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11105207/

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