how to stop activity recreation on screen orientation?

后端 未结 7 586
情话喂你
情话喂你 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条回答
  •  Happy的楠姐
    2020-12-10 06:50

    Up to API 13 there was a new value to the configChanges attribute, screenSize

    So if you're using large screens make sure to add screenSize in your configChanges attribute:

        android:configChanges="orientation|keyboardHidden|screenSize"
    

提交回复
热议问题