gpt4 book ai didi

android - 如何从两个不同的角度旋转 View ?

转载 作者:行者123 更新时间:2023-11-29 20:18:49 35 4
gpt4 key购买 nike

我正在尝试将 ImageButton 旋转 180 度,使其与反向纵向匹配。当我以与其他方向更改相同的方式执行此操作时,结果是完美的,但不是动画。

 public void onOrientationChanged(int DeviceAngle) {
float MyButtonCurrentAngle = MyButton.getRotation(); //Gets portrait rotation (0)
if(DeviceAngle > 350 || DeviceAngle < 10) { //Portrait
MyButton.animate().rotationBy(- MyButtonCurrentAngle).setDuration(100).start();
} else if(DeviceAngle > 80 && DeviceAngle < 100) { //Reverse Landscape
MyButton.animate().rotationBy(-90 - MyButtonCurrentAngle ).setDuration(100).start();
} else if(DeviceAngle > 170 && DeviceAngle < 190) { //Reverse Portrait
MyButton.animate().rotationBy(180 - MyButtonCurrentAngle).setDuration(100).start();
} else if(DeviceAngle > 260 && DeviceAngle < 280) { //Landscape
MyButton.animate().rotationBy(90 - MyButtonCurrentAngle ).setDuration(100).start();
}

我认为会发生这种情况,因为 float MyButtonCurrentAngle 从 350 到 10(0 或 360,纵向方向)之间的 DeviceAngle 获取 MyButton 旋转角度值(0 或未旋转)并将其用作引用。

尽管我仍然怀疑,但我放弃了之前的案例。 float 似乎与其他方向配合得很好,我认为问题在于反向纵向方向的动画。按钮不应旋转 180 度,而应旋转 90 度或 -90 度。这是因为您无法在不通过任一横向选项的情况下将设备从纵向旋转到反向纵向。 (不能直接旋转人像来反转人像)。

经过多次不成功的尝试后,我得出的结论是,在旋转按钮并且检测到的方向是横向或反向横向后,我无法使用 MyButton 获取角度值。我考虑过创建另一个 float 来获取 Reverse Portrait MyButton 角度值,但此 Activity 的方向设置为纵向,因此这没有意义。

因此,我需要在使用 float 旋转后获取 MyButton 旋转角度,使用此值作为循环条件,并根据结果在两个不同的动画中将其旋转 90 度或 -90 度。这是我对这个问题的最新处理方法:

    while (MyButtonCurrentAngle==90) { 
if (DeviceAngle > 170 && DeviceAngle < 190) {
MyButton.animate().rotationBy(90 - MyButtonCurrentAngle).setDuration(100).start();
}
}
while (MyButtonCurrentAngle==270) {
if (DeviceAngle > 170 && DeviceAngle < 190) {
MyButton.animate().rotationBy(-90 - MyButtonCurrentAngle).setDuration(100).start();
}
}

基本上,这会处理从横向和反向横向到反向纵向的设备方向。这没有触发任何动画,所以 MyButtonCurrentAngle float 角度值从未改变或无法检测到?为什么 if 语句不能读取它?我不知道,我想知道我做错了什么。提前致谢。

最佳答案

你又来了..你没有在循环中更新 MyButtonCurrentAngle 值,所以它当然永远不会改变。它看起来像一个无限循环,除非 DeviceAngle 发生变化。

然而,大多数应用程序不支持反向纵向模式,因为它没有实际意义。这也是操作系统的默认行为。你真的必须支持吗?

好的,让我们这样做:

    OrientationEventListener orientationEventListener = new OrientationEventListener(this, SensorManager.SENSOR_DELAY_UI) {
static final int DELTA = 20;

@Override
public void onOrientationChanged(int angle) {
float destination = mDestination;
if (angle > 90 - DELTA && angle < 90 + DELTA) {
destination = -90;
} else if (angle > 180 - DELTA && angle < 180 + DELTA) {
destination = 180;
} else if (angle > 270 - DELTA && angle < 270 + DELTA) {
destination = 90;
} else if (angle > 360 - DELTA || angle < DELTA) {
destination = 0;
}
if (destination != mDestination) {
mDestination = destination;
button.animate().rotation(mDestination).setDuration(100).start();
}
}
};
orientationEventListener.enable();

mDestination是你的activity的成员变量,声明如下:

float mDestination = 0;

我认为这个新代码将解决我之前帖子中的一个问题,该问题会使动画变得迟缓,因为动画经常被重新启动。

您可以根据需要更改持续时间。我将 delta 更改为 20,因为我认为 10 太小了。

关于android - 如何从两个不同的角度旋转 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33490934/

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