我正在缩小和解释尽可能简单, 主要活动启动异步任务。
调用方向更改onCreate()
时,会在获得后创建Async
。所以在onPreExecute()
中我锁定了我的方向,并在onPostExecute()
我释放锁定方向。通过这种方式,如果Async
任务已经启动,则永远不会创建另一个任务实例。
另一个问题已经开始,主要活动本身findViewById()
在我随机改变屏幕方向时返回null。在5-6次尝试中重新产生一次。
怎么去呢?任何帮助
在完成方法或主线程后,onCreate()
是否会被重新调用...或者只要方向发生变化就会立即调用
谢谢
---------------更新
<application
android:allowBackup="true"
android:icon="@drawable/ap_logo"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="agilepoint.android.mobilebpm.main.LoginActivity"
android:configChanges="orientation"
android:label="@string/app_name"
android:logo="@drawable/menu_button"
android:windowSoftInputMode="adjustPan|stateHidden"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="http" />
</intent-filter>
</activity>
</application>
答案 0 :(得分:5)
找到我的解决方案......
android:configChanges="orientation" does not work with fragments
如果要在开发API级别13或更高级别(由minSdkVersion
和targetSdkVersion
属性声明)时由于方向更改而阻止运行时重新启动,则必须包含screenSize
除orientation
值之外的值。也就是说,您必须声明android:configChanges="orientation|screenSize"
。
答案 1 :(得分:0)
添加android:configChanges =&#34;方向#34;对于清单中的特定活动。