我的清单中有这个:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.apps.foo.bar" >
<uses-feature android:name="android.hardware.camera" />
<uses-permission android:name="android.permission.CAMERA" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainPreviewActivity"
android:label="@string/app_name"
android:screenOrientation="fullSensor"
android:configChanges="orientation|screenSize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
现在问题在于:
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
.............
.................
............
}
当我将屏幕从纵向旋转到横向时,这被称为正常。
但是一旦我在风景中,如果我转向其他景观(即180度)
它没有开火。奇怪的是,它仅从portrait
到landscape
和landscape
到portrait
才会触发。
答案 0 :(得分:1)
从横向翻转到反向横向不是配置更改,因为它对应用程序所处的环境是不可见的,因此系统不会发送事件。
您可以在此处找到更多信息和备用解决方案: https://groups.google.com/forum/#!topic/android-developers/IgBNQNgFUmk