English 中文(简体)
轮调和机械化方面的进展不见进展
原标题:Progress disapear on rotation android
  • 时间:2012-05-23 05:21:03
  •  标签:
  • java
  • android

我用AsyncTashsk下载文件。

//Updating progress dialog
protected void onProgressUpdate(Integer... changed) {
    progressDialog.setProgress(changed[0]);
}

//STARTED 
@Override
protected void onPreExecute() {

    try {
        progressDialog = new ProgressDialog(context);
        progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
        progressDialog.setMessage(context
                .getString(R.string.message_loading));
        progressDialog.setCancelable(false);
        progressDialog.show();
    } catch (Exception e) {
        // TODO: handle exception
        e.printStackTrace();
    }
}

在肖像和景观方面,一切都很好。为了通知文件被下载,我正在使用接口。

所以当我开始在肖像或景观中下载我的文件时, 错误的是, 虽然没有下载, 但是我旋转了设备, 进展就消失了, 调回火力例外, 因为没有地方可去。

当我旋转设备时, 我的活动会重新创建, 所以如何正确操作 。 我需要限制下载开始时用户无法旋转设备, 然后如何操作 。

或有什么解决办法呢?

最佳回答

如果您想要在下载时限制方向, 那么在开始下载之前使用此代码。 这将限制用户设备方向 。

int current_orientation = getResources().getConfiguration().orientation;
if (current_orientation == Configuration.ORIENTATION_LANDSCAPE) {
    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
} else {
    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}

此代码可以在完成方向后使用, 允许用户再次旋转设备 。

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR);

希望它会帮助你。

问题回答

I need to restrict that when downloading is started user couldn t rotate device, then how to do that.

在您显示进度对话框之前, 您需要修改设备方向 。

onPreExecute(){
.....
.....
Activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
//in case activity started in landscape mode
progressDialog.show();
}

一旦下载完成后, 您可以恢复到正常的方向改变 。

onPostExecute(){
Activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR);
progressDialog.dismiss();
}

One more solution I will suggest.. Don t restrict the orientation for the activity, instead you can add "configChanges="Orientation"" attribute in manifest file and Please check for progressDialog object for !null in onPreExecute() method and setProgress(progress) if its not null.

onPreExecute(){
if(progressDialog!=null){
   progressDialog.setProgress(progress);
}
else{
......
......
}
}




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签