Android - Dealing with a Dialog on Screen Orientation change

后端 未结 3 1509
北恋
北恋 2021-02-20 16:44

I am overriding the onCreateDialog and onPrepareDialog methods or the Dialog class.

I have followed the example from Reto Meier\'s Professional Android Application Devel

3条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-20 16:56

    When you change orientation, android restart your activity, you need to save the estate with

    onSaveInstanceState
    

    and recover with

    savedInstanceState
    

提交回复
热议问题