Activity restart on rotation Android

前端 未结 30 3864
花落未央
花落未央 2020-11-21 04:32

In my Android application, when I rotate the device (slide out the keyboard) then my Activity is restarted (onCreate is called). Now, this is proba

30条回答
  •  天命终不由人
    2020-11-21 05:04

    Every time when screen is rotated, opened activity is finished and onCreate() is called again.

    1 . You can do one thing save the state of activity when screen is rotated so that, You can recover all old stuff when activity's onCreate() is called again. Refer this link

    2 . If you want to prevent restarting of the activity just place following lines in your manifest.xml file.

      
    

提交回复
热议问题