我已经看到了一些与此类似但没有答案的其他问题。
从纵向旋转到横向(任一方向)再返回,我们得到对onConfigurationChanged()的有用调用。
然而,当从风景旋转到风景(180度)时,onConfigurationChanged()不会被调用。
我已经看到过使用OrientationEventListener,但这对我来说似乎很有趣,因为你可以快速旋转而不会触发显示方向的改变。
我尝试过添加布局更改侦听器,但没有成功。
所以问题是,如何可靠地检测横向方向的这种变化?
答案 0 :(得分:9)
当设备未旋转/移动时,OrientationEventlistener将无法工作。
我发现显示侦听器是检测更改的更好方法。
DisplayManager.DisplayListener mDisplayListener = new DisplayManager.DisplayListener() {
@Override
public void onDisplayAdded(int displayId) {
android.util.Log.i(TAG, "Display #" + displayId + " added.");
}
@Override
public void onDisplayChanged(int displayId) {
android.util.Log.i(TAG, "Display #" + displayId + " changed.");
}
@Override
public void onDisplayRemoved(int displayId) {
android.util.Log.i(TAG, "Display #" + displayId + " removed.");
}
};
DisplayManager displayManager = (DisplayManager) mContext.getSystemService(Context.DISPLAY_SERVICE);
displayManager.registerDisplayListener(mDisplayListener, UIThreadHandler);
答案 1 :(得分:6)
可能是你应该在OrientationEventListener中添加一些逻辑代码,如下所示:
mWindowManager = (WindowManager) getSystemService(Context.WINDOW_SERVICE);
OrientationEventListener orientationEventListener = new OrientationEventListener(this,
SensorManager.SENSOR_DELAY_NORMAL) {
@Override
public void onOrientationChanged(int orientation) {
Display display = mWindowManager.getDefaultDisplay();
int rotation = display.getRotation();
if ((rotation == Surface.ROTATION_90 || rotation == Surface.ROTATION_270) && rotation != mLastRotation) {
Log.i(TAG, "changed >>> " + rotation);
// do something
mLastRotation = rotation;
}
}
};
if (orientationEventListener.canDetectOrientation()) {
orientationEventListener.enable();
}
答案 2 :(得分:3)
我使用此代码使其适用于我的情况。
OrientationEventListener mOrientationEventListener = new OrientationEventListener(mActivity)
{
@Override
public void onOrientationChanged(int orientation)
{
if (orientation == ORIENTATION_UNKNOWN) return;
int rotation = mActivity.getWindowManager().getDefaultDisplay().getRotation();
switch (rotation) {
case Surface.ROTATION_0:
android.util.Log.i(TAG, "changed ROTATION_0 - " + orientation);
break;
case Surface.ROTATION_90:
android.util.Log.i(TAG, "changed ROTATION_90 - " + orientation);
break;
case Surface.ROTATION_180:
android.util.Log.i(TAG, "changed ROTATION_180 - " + orientation);
break;
case Surface.ROTATION_270:
android.util.Log.i(TAG, "changed ROTATION_270 - " + orientation);
break;
}
if ((rotation != mLastRotation) && (rotation & 0x1) == (mLastRotation & 0x1))
{
android.util.Log.i(TAG, "unhandled orientation changed >>> " + rotation);
}
mLastRotation = rotation;
}
};
if (mOrientationEventListener.canDetectOrientation()){
mOrientationEventListener.enable();
}