4

我在android中的方向有问题。设备方向是我在 AndroidManifest.xml 文件中设置的横向。

android:screenOrientation="landscape"

此外,我将设备保持在横向状态,因此所有内容(布局、视图等)都处于我想要的横向模式。但只有当我以纵向方式握住设备时,它才会为我提供所需的价值。

我从互联网上修改了一些代码,它适用于 HTC 3d EVO、Nexus 7 和三星 Galaxy S3,但不适用于 Galaxy Tablet 10"。

我找到了这篇文章。 不同设备的Android方向传感器不同? 接受的答案建议使用 getRotation() 和 remapCoordinateSystem() 方法,但没有提及如何使用。

这就是我的结局。

        SensorManager.getRotationMatrix(Rmat, Imat, gData, mData);
        SensorManager.remapCoordinateSystem(Rmat, SensorManager.AXIS_Y, SensorManager.AXIS_MINUS_X, R2);
        // Orientation isn't as useful as a rotation matrix, but
        // we'll show it here anyway.
        SensorManager.getOrientation(R2, orientation);
        float incl = SensorManager.getInclination(Imat);

        FontTextView pitchText = (FontTextView)findViewById(R.id.pitch_text);

        if((int)(orientation[1]*90) <= -110 && !newQuestionIsActive) {
            newQuestionIsActive = true;
            pitchText.setText("Bring new question");
        }
        else if(Math.abs((int)(orientation[2]*90)) <= 200 && (int)(orientation[1]*90) >= -30 && newQuestionIsActive) {
            newQuestionIsActive = false;
            pitchText.setText("Not Correct!");
        }
        else if(Math.abs((int)(orientation[2]*90)) > 200 && (int)(orientation[1]*90) >= -30 && newQuestionIsActive) {
            newQuestionIsActive = false;
            pitchText.setText("Congratulations!");
        }

现在我应该如何在这段代码中使用 getRotation() ?并且可能是一个简短的解释,为什么提到的 3 款设备可以正常工作,但 Galaxy 平板电脑却不行。

关于这个问题android文档说;

最后,如果您的应用程序将传感器数据与屏幕显示相匹配,则需要使用 getRotation() 方法确定屏幕旋转,然后使用 remapCoordinateSystem() 方法将传感器坐标映射到屏幕坐标。即使您的清单指定仅纵向显示,您也需要这样做。

http://android-developers.blogspot.com/2010/09/one-screen-turn-deserves-another.html

4

2 回答 2

13

找到了解决方案。

该问题是由于某些较新设备的默认方向设置为横向,而其他设备的默认方向设置为纵向。因此,传感器管理器会做出相应的行为。为了让传感器管理器按预期工作,您需要检测设备的 defaultDisplayRotation 并更改 remapCoordinateSystem() 参数逻辑。

我改变了

SensorManager.remapCoordinateSystem(Rmat, SensorManager.AXIS_Y, SensorManager.AXIS_MINUS_X, R2);

int rotation = ((WindowManager) getApplicationContext().getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay().getRotation();
if(rotation == 0) // Default display rotation is portrait
    SensorManager.remapCoordinateSystem(Rmat, SensorManager.AXIS_MINUS_X, SensorManager.AXIS_Y, R2);
else   // Default display rotation is landscape
    SensorManager.remapCoordinateSystem(Rmat, SensorManager.AXIS_Y, SensorManager.AXIS_MINUS_X, R2);

现在它可以工作了......希望这对其他人有用!

于 2013-06-26T15:28:20.763 回答
0

我不知道你的方式。但是以下方式对我有用。

int orientation = getResources().getConfiguration().orientation;

如果设备处于模式,则为orientation1,landscape如果设备处于模式,则为 2 portrait

我希望这能帮到您。

于 2013-06-26T13:07:34.757 回答