关闭自动旋转时获取设备旋转

时间:2013-04-08 05:06:38

标签: android android-orientation

我正在编写一个相机应用程序,通过设置android:screenOrientation="nosensor"来禁用相机预览期间的自动旋转。但是,我仍然想知道拍摄照片时手机的旋转情况。 getResources().getConfiguration().orientation不够具体,只返回人像,风景或正方形。 getWindowManager().getDefaultDisplay().getRotation()始终为0,因为屏幕被强制为默认方向 - 如果启用自动旋转,我怎样才能获得 的值?

4 个答案:

答案 0 :(得分:5)

这有点深入,但适用于跟踪方向变化。当相机意图打开并拍摄照片时,我用它来获取照片方向。然后我知道照片的方向。它显然不适用于照片库,但您可以使用exif信息。我惊恐地发现三星Galaxy S3和S4没有从相机返回exif方向数据。

//keep a history
private int [] _orientationHistory = new int[5];
private int _orientationIndex;
private int _highestIndex = -1;
private int _currentOrientation;

//essentially compute the mode of the data. This could be improved
protected int getOrientation()
{
    if (_highestIndex < 0) return 0;

    Arrays.sort(_orientationHistory);
    return _orientationHistory[_highestIndex / 2];
}

OrientationEventListener _imageViewOrientationListener = new            
              OrientationEventListener(getContext(), SensorManager.SENSOR_DELAY_NORMAL) {
public void onOrientationChanged(int angle) {
        //angle comes in 360 degrees, convert that to a 0-3 rotation
        //Get the angle in 90 degree increments, 0,90,180,270 
        //with 45 degrees tolerance in each direction (straight up is 0) 
        //this is the same as the data coming from getWindowManager().getDefaultDisplay().getRotation()

        angle = angle + 45;
        if (angle > 360) angle = angle - 360;
        int orientation = angle / 90;

        //I use a history in order to smooth out noise 
        //and don't start sending events about the change until this history is filled
        if (_orientationIndex > _highestIndex) {
            _highestIndex = _orientationIndex;
        }
        _orientationHistory[_orientationIndex] = orientation;
        _orientationIndex ++;

        if (_orientationIndex == _orientationHistory.length) {
            _orientationIndex = 0;
        }

        int lastOrientation = _currentOrientation;
        //compute the orientation using above method
        _currentOrientation = getOrientation();

        if (_highestIndex == _orientationHistory.length - 1 && lastOrientation != _currentOrientation) {
            //enough data to say things changed
            orientationChanged(lastOrientation, _currentOrientation);
        }
    }
};

然后要启用此侦听器,只需添加以下代码行:

if (_imageViewOrientationListener != null) {
     _imageViewOrientationListener.enable();
}

最后,添加方法orientationChanged()并在方向更改时接收更新。 如果您需要像我一样,在打开相机活动时开始记录此信息,如果方向翻转到不同的位置,比如说纵向横向,您可以假设在该时间段内拍摄的照片是您记录的旋转变化

protected void orientationChanged(int lastOrientation, int currentOrientation) {
    Log.d(getClass().getSimpleName(), "Orientation changed to " + currentOrientation + " from " + lastOrientation);
}

答案 1 :(得分:1)

在活动中,您可以使用

@Override
public void onConfigurationChanged(Configuration newConfig) {    //this method return you latest configuration
    // TODO Auto-generated method stub
    super.onConfigurationChanged(newConfig);
//  newConfig.orientation  //Using this you will able to get orientation of device
}

此方法在您更改设备配置后调用。

答案 2 :(得分:1)

您可以收听配置已更改

<activity
...
            android:configChanges="orientation|screenSize"
...

在onConfigurationChanged()中,你可以强制你想要的方向(例如肖像),但获取有关方向变化的信息。

@Override
public void onConfigurationChanged(Configuration newConfig) {
    //get new configuration orientation from newConfig.orientation
    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}

并且不要使用android:screenOrientation =“portrait”所以当用户更改方向onConfigurationChanged时会被调用。

答案 3 :(得分:0)

当设备的方向发生变化时,使用this类接收来自SensorManager的通知。