我正在开发一个在清单文件中以纵向模式锁定的Android相机api应用程序。
android:configChanges="orientation"
android:screenOrientation="portrait"
我的问题是,当我存储图片时,它们都以相同的方向存储。
我希望它们以真实的方向存储,例如。我的天花板应该位于存储图片的顶部,无论我如何定位我的手机,如果这有任何意义
为了做到这一点,我必须知道设备的方向,但似乎当应用程序被锁定时,所有getOrientation' ish方法认为我的手机处于纵向模式,无论物理方向我的手机。
以下是我尝试过的内容:
Camera.CameraInfo cameraInfo = new Camera.CameraInfo();
Camera.getCameraInfo(mCurrentlyUsedCamera,cameraInfo);
Log.e("debug","orientation:"+cameraInfo.orientation);
和
getResources().getConfiguration().orientation
和
this.getWindowManager().getDefaultDisplay().getRotation()
答案 0 :(得分:0)
简而言之 - 您必须直接使用传感器。 我有点工作,但后来我找到了这个人: Android: get device orientation from Azimuth, roll & pitch
所以我基本上删除了我自己的所有代码并实现了他的实用程序类:) https://gist.github.com/abdelhady/501f6e48c1f3e32b253a#file-deviceorientation