I have a set of 3 Activities; Menu, Game and Map. When the play game button is pressed in Menu, Game is started. In Game.onResume, Map is automatically started for result. Pressing back in Map takes us back to Game.onActivityResult, which automatically finishes Game bringing us back to Menu. Just doing all of that seems to work fine; the problem occurs when I add an AlertDialog in Menu.onClick while things are being prepared for starting Game. If I don't dismiss this dialog before leaving Menu, everything still works exactly the same way, except Map.onDestroy doesn't get called after pressing back from Map and returning to Menu.

My question is: how can a dialog which doesn't reference, and isn't referenced by, either of the two other activities change whether one of those activities' onDestroy events is called?

Here are the sequences of recorded events when the loading dialog is dismissed (the expected behavior) and when the loading dialog is not dismissed:

    Leave dialog    Dismiss dialog
1.  <start app>     <start app>
2.  Menu:onCreate   Menu:onCreate
3.  Menu:onResume   Menu:onResume
4.  <play game>     <play game>
5.  Menu:onPause    Menu:onPause
6.  Game:onCreate   Game:onCreate
7.  Game:onResume   Game:onResume
8.  Game:onPause    Game:onPause
9.  Map:onCreate    Map:onCreate
10. Map:onResume    Map:onResume
11. <back>          <back>
12. Map:onPause     Map:onPause
13. Menu:onResume   Menu:onResume
14. Map:onDestroy
15. Game:onDestroy  Game:onDestroy
16. <play game>     <play game>
17. Menu:onPause    Menu:onPause
18. Game:onCreate   Game:onCreate
19. Game:onResume   Game:onResume
20. Game:onPause    Game:onPause
21. Map:onCreate    Map:onCreate
22. Map:onResume
23.                 Map:onDestroy

Here are the 3 Activities:

Menu

public class Menu extends Activity {
    private static AlertDialog mLoading = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        Log.v("ActivityLaunch", "Menu:onCreate");
        super.onCreate(savedInstanceState);

        setContentView(R.layout.menumain);

        Button startgame =(Button)findViewById(R.id.PlayGame);
        startgame.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                showLoading(Menu.this, "Loading Game");
                Intent i = new Intent(Menu.this, Game.class);
                startActivity(i);
                //dismissLoading(); //TODO: uncommmenting this line fixes problem
            }
        });
    }

    @Override
    public void onPause() {
        Log.v("ActivityLaunch", "Menu:onPause");
        super.onPause();
        //dismissLoading(); //TODO: uncommmenting this line fixes problem
    }

    @Override
    public void onDestroy() {
        Log.v("ActivityLaunch", "Menu:onDestroy");
        super.onDestroy();
    }

    @Override
    public void onResume() {
        Log.v("ActivityLaunch", "Menu:onResume");
        super.onResume();

        dismissLoading();
    }

    private static AlertDialog prepareLoading(Context context, String text) {
        AlertDialog.Builder builder = new AlertDialog.Builder(context);
        builder.setTitle(text)
            .setCancelable(false);
        return builder.create();
    }

    private static void showLoading(Context context, String text) {
        dismissLoading();

        mLoading = prepareLoading(context, text);
        mLoading.show();
    }

    private static void dismissLoading() {
        if (mLoading != null) {
            mLoading.dismiss();
            mLoading = null;
        }
    }   
}

Game

public class Game extends Activity {
    private static final int GET_LEVEL_ID = 0;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        Log.v("ActivityLaunch", "Game:onCreate");
        super.onCreate(savedInstanceState);
    }

    @Override
    protected void onResume() {
        Log.v("ActivityLaunch", "Game:onResume");
        super.onResume();

        Intent levelMap = new Intent(Game.this, Map.class);
        levelMap.putExtra("SelectedLevel", "");
        startActivityForResult(levelMap, GET_LEVEL_ID);
    }

    @Override
    protected void onPause() {
        Log.v("ActivityLaunch", "Game:onPause");
        super.onPause();        
    }

    @Override
    public void onDestroy() {
        Log.v("ActivityLaunch", "Game:onDestroy");
        super.onDestroy();
    }

    @Override
    protected void onActivityResult(int codeID, int codeResult, Intent data) {      
        if (codeID == GET_LEVEL_ID) {
            if (codeResult == Activity.RESULT_OK) {
                finish();
                return;
            }
        }
    }
}

Map

public class Map extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        Log.v("ActivityLaunch", "Map:onCreate");
        super.onCreate(savedInstanceState);
    }

    @Override
    public void onResume() {
        Log.v("ActivityLaunch", "Map:onResume");
        super.onResume();
    }

    @Override
    protected void onPause() {
        Log.v("ActivityLaunch", "Map:onPause");
        super.onPause();        
    }

    @Override
    public void onDestroy() {
        Log.v("ActivityLaunch", "Map:onDestroy");
        super.onDestroy();
    }

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if (keyCode == KeyEvent.KEYCODE_BACK) {
            Intent data = new Intent();
            data.putExtra("SelectedLevel", "");                 
            setResult(Activity.RESULT_OK, data);        
        }
        return super.onKeyDown(keyCode, event);
    }   
}
link|improve this question

40% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.