Activity restart on rotation Android

前端 未结 30 3987
花落未央
花落未央 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条回答
  •  Happy的楠姐
    2020-11-21 04:58

    Fix the screen orientation (landscape or portrait) in AndroidManifest.xml

    android:screenOrientation="portrait" or android:screenOrientation="landscape"

    for this your onResume() method is not called.

提交回复
热议问题