9

假设我们有两个活动,Activity1 和 Activity2。

在 Activity1 的 onClick() 方法中,如果按下某个按钮,我们将调用启动 Activity 2:

Intent myIntent = new Intent(Activity1.this, Activity2.class);
Activity1.this.startActivity(myIntent);

在 Activity2 中调用 finish() 并恢复 Activity1 后,一旦恢复,我需要在 Activity1 中显示一个对话框。

之前,我只是在 Activity1 的 onClick() 方法的同一块中调用了 showDialog(id):

public void onClick(View v) {
     if(v == addHole){
     //...
     Intent myIntent = new Intent(Activity1.this, Activity2.class);
     Activity1.this.startActivity(myIntent);
     showDialog(END_DIALOG_ID);
     }
}

问题是,Activity1 恢复后,END_DIALOG_ID 对应的对话框不可见,但屏幕变暗且无响应(好像对话框存在),直到按下返回键。

我曾尝试将 showDialog() 调用放在 Activity1 的 onResume() 和 onRestart() 方法中,但它们都会使程序崩溃。

我还尝试在 Activity2 中创建 AsyncTask 方法,并在其 onPostExecute() 中调用 showDialog(),但该对话框在 Activity2 中不可见。

private class ShowDialogTask extends AsyncTask<Void, Void, Integer> {
    /** The system calls this to perform work in a worker thread and
     * delivers it the parameters given to AsyncTask.execute() */
    protected Integer doInBackground(Void... id) {
        //do nothing
        return END_DIALOG_ID;
    }

    /** The system calls this to perform work in the UI thread and delivers
     * the result from doInBackground() */
    protected void onPostExecute(Integer id) {
        super.onPostExecute(id);
        showDialog(id);

    }
}

我现在正试图通过调用来实现这一点

Activity1.this.startActivityForResult(myIntent, END_DIALOG_REQUEST);

使用来自 Activity1 的相应 setResult() 和 onActivityResult() 方法,但似乎应该有更好的实践来实现这一点。我只需要在 Activity2 完成时显示一个对话框。

感谢您的任何帮助,您可以提供。

4

3 回答 3

9

就像你建议的那样,startActivityForResult开始时打电话Activity2。然后,覆盖onActivityResult并检查RESULT_OK,然后显示您的对话框。对于做你想做的事情来说,这是一种完全可以接受的做法。

于 2012-06-21T17:01:13.543 回答
0

您可以使用 onResume 方法(如果您没有从活动 2 中查看任何内容)

@Override
public void onResume(){
    super.onResume();
    //do something
}
于 2012-06-21T17:09:51.517 回答
0

我必须返回根活动 - MainActivity,可能会关闭几个活动,然后显示对话框。所以我选择了另一种方式。

MyDialog {
    public static synchronized void planToShowDialog(String info) {
        if (info != null) {
            saveInfoToPreferences(info);
        }
    }

    public static synchronized void showDialogIfNecessary(Context context) {
        String info = readInfoFromPreferences(); 
        if (info != null) {
            saveInfoToPreferences(null); // Show dialog once for given info.
            new MyDialog(context, info).show();
        }
    }

    private static String readInfoFromPreferences() {
        //...
    }

    private static void saveInfoToPreferences(String info) {
        //...
    }
}

我从 MainActivity.onPostResume() 方法调用 MyDialog.showDialogIfNecessary() 。

于 2013-05-07T09:42:42.710 回答