how to stop activity recreation on screen orientation?

后端 未结 7 591
情话喂你
情话喂你 2020-12-10 06:25

how i can stop the restarting or recalling of on create() on screen orientation ,i want to stop the recreation of activity on screen orientation. thanks in advance please te

7条回答
  •  再見小時候
    2020-12-10 06:50

    In your AndroidManifest.xml file, in the activity add

    android:configChanges="keyboardHidden|orientation"
    

    Example as below:

     
    

提交回复
热议问题