Unexpected resume of “package name” while already resumed in ''package name" Error in Android

前端 未结 3 2091
Happy的楠姐
Happy的楠姐 2021-02-04 00:58

If changing the orientation of my phone or the emulator I get the following output in LogCat:

04-09 11:55:26.290: INFO/WindowManager(52): Setting rotation to 1,          


        
3条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-04 01:56

    Add this into the the activity declaration in your manifest.xml:

    android:configChanges="orientation"
    

    Example:

    
    

    https://developer.android.com/guide/topics/manifest/activity-element.html#config

    For Devices with QWERTY keyboard

    android:configChanges="keyboardHidden|orientation"
    

提交回复
热议问题