我的应用只能用于横向。 但是我在设置android时注意到了:screenOrientation =" landscape" 在我的清单中,onPause被调用两次。 可能所有活动的livecycles都会被调用两次。
我怎样才能避免这种情况,这是正常的吗?
修改
我使用了android注释库(https://github.com/excilys/androidannotations)。 这是我的清单中的活动声明。
<activity
android:name="MyActivity_"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:windowSoftInputMode="adjustPan" />