how to stop activity recreation on screen orientation?

后端 未结 7 593
情话喂你
情话喂你 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 07:06

    Add

    android:orientation="vertical"
    

    or

    android:orientation="horizontal"
    

    to your layout in mainwindow.xml.

    Example:::

    
    

    No need to add anything in Activity class.

    Hope this may help you

提交回复
热议问题