1

我尝试打开第二个活动,这需要一些时间从主要活动首先从互联网加载数据,在此期间,我的屏幕将全黑,所以我决定使用进度对话框显示“嘿,我还活着,不要关我!” 一切都很顺利,但唯一的问题是微调器没有旋转。这是我的代码:单击按钮后: new YourAsyncTask().execute();

public class YourAsyncTask extends AsyncTask<Void, Void, Void> {

    private ProgressDialog myDialog;

    @Override
    protected void onPreExecute() {
        //show your dialog here
        myDialog = ProgressDialog.show(ScrollingTab.this, "loading..", "please wait..", true, true);  
        myDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER); 
    }

    @Override
    protected Void doInBackground(Void... params) {        
        //update your DB - it will run in a different thread

        startActivity(new Intent("com.android.ricky.RESULT_DETAIL"));
        return null;
    }

    @Override
    protected void onPostExecute(Void result) {
        //hide your dialog here
        myDialog.dismiss();
    }
}

我试图删除“ startActivity(new Intent("com.android.ricky.RESULT_DETAIL"));” 和“myDialog.dismiss();” 同时,旋转器正在旋转><请帮助,非常感谢!

4

1 回答 1

4

你的概念有点混乱和错误,

您必须在单击按钮时启动 2nd Activity,然后onCreate()在您的 2nd Activity 中执行YourAsyncTask(). 并从互联网下载数据以进行 2nd Activity 中doInBackground()AsyncTask。完成下载后,为 2nd Activity 准备你的UI onPostExecute()AsyncTask然后.dismiss()ProgressDialog

于 2012-07-04T10:19:58.787 回答