我尝试实现以下代码来处理屏幕方向更改。
****DataBaseUpdateService.java****
public class DataBaseUpdateService extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Updatetask Task = new Updatetask(this.getApplicationContext());
if(Task.getStatus() == AsyncTask.Status.PENDING){
Task.execute();};
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
}
@Override
public void onPause() {
super.onPause();
}
@Override
public void onResume() {
super.onResume();
}
}
=============================================== ===========================
****Androidmanifest.xml****
<activity
android:name=".DataBaseUpdateService"
android:configChanges="keyboardHidden|orientation"/>
这些代码与android 3.x或更低版本完美配合。但是,它对于android 4.x无法正常工作。
你知道问题是什么吗?
答案 0 :(得分:27)
同时添加screenSize
值。
注意:如果您的应用程序的目标是API级别13或更高级别(由minSdkVersion和targetSdkVersion属性声明),那么 你还应该声明
screenSize
配置,因为它 当设备在纵向和横向之间切换时也会发生变化 取向。
因此,清单应该如下所示(如果您想自己处理方向更改):
****Androidmanifest.xml****
<activity
android:name=".DataBaseUpdateService"
android:configChanges="keyboardHidden|orientation|screenSize"/>
答案 1 :(得分:2)
解决方案1 - 如果您确实需要AsyncTask,请三思。 解决方案2 - 将AsyncTask放入片段中。 解决方案3 - 锁定屏幕方向 解决方案4 - 防止重新创建活动。
参考:http://androidresearch.wordpress.com/2013/05/10/dealing-with-asynctask-and-screen-orientation/
..... 问题发生是因为在配置更改时重新创建了活动,例如方向更改等。 您可以在asyntask的onPreExecuted()方法中锁定方向更改,并在onPostExecuted()方法中将其解锁。
import android.app.Activity;
import android.content.Context;
import android.content.pm.ActivityInfo;
import android.content.res.Configuration;
import android.os.AsyncTask;
import android.widget.Button;
import android.widget.ProgressBar;
public class MyAsyncTask extends AsyncTask<Void, Integer, Void> {
private Context context;
private ProgressBar progressBar;
private Button button;
public MyAsyncTask(ProgressBar progressBar,Context context,Button button){
this.context=context;
this.progressBar=progressBar;
this.button=button;
}
private void lockScreenOrientation() {
int currentOrientation =context.getResources().getConfiguration().orientation;
if (currentOrientation == Configuration.ORIENTATION_PORTRAIT) {
((Activity)
context).setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
} else {
((Activity) context).
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
}
}
private void unlockScreenOrientation() {
((Activity) context).
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR);
}
@Override
protected void onPreExecute() {
// TODO Auto-generated method stub
super.onPreExecute();
progressBar.setMax(100);
button.setEnabled(false);
lockScreenOrientation();
}
@Override
protected Void doInBackground(Void... params) {
// TODO Auto-generated method stub
for(int i=0;i<=100;i++){
try {
Thread.sleep(200);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
publishProgress(i);
}
return null;
}
@Override
protected void onProgressUpdate(Integer... values) {
// TODO Auto-generated method stub
super.onProgressUpdate(values);
progressBar.setProgress(values[0]);
}
@Override
protected void onPostExecute(Void result) {
// TODO Auto-generated method stub
super.onPostExecute(result);
button.setEnabled(true);
unlockScreenOrientation();
}
}
答案 2 :(得分:0)
我不是100%确定这会有效,但您可以尝试使用onNonConfigurationChangedInstance()保存AsyncTask。
// Declare a member variable
private UpdateTast task;
public void onCreate(){
// Attempt to get the asynctask instance
task=(UpdateTask)this.getLastNonConfigurationInstance();
// If it's null create a new instance
if(task==null){
task = new Updatetask(this.getApplicationContext());
task.execute().
}
// If it is not null, then the reference returned by getLastNonConfigurationInstance(); will be used.
}
// And lastly override onRetainNonConfigurationInstance method:
@Override
public Object onRetainNonConfigurationInstance() {
return task
}