使用调用系统拍照的代码,在三星和部分小米手机上面出现了一个现象:
在拍照完成,点击保存后。闪了一下,再次进去了拍照界面。
打了一下日志,发现上个界面被destory了。
发现是因为横竖屏切换导致的问题,在
AndroidManifest.xml 里面把这个Activity,强制设置为横屏,无效。
然后把这个Activity加个配置: android:configChanges="orientation|keyboardHidden",发现就好了。
最近升级了sdk。targetSdkVersion 更改了。发现又出现问题了。 后来看谷歌文档:
Note: If your application targets API level 13 or higher (as declared by the minSdkVersion and targetSdkVersion attributes), then you should also declare the "screenSize" configuration, because it also changes when a device switches between portrait and landscape orientations.
大于等于13,还需要加上screenSize。
改成这样: android:configChanges="orientation|keyboardHidden|screenSize" 就好了