mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Fixed Android lock screen bug
- Fixed Android locking screen bug. OnDestroy() was called when locking screen. - Power button input must be handled by OS. - AndroidManifest.xml is affected by configChanges="screenSize". - Updated library header for android template.
This commit is contained in:
@ -23,7 +23,7 @@
|
||||
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" >
|
||||
<!-- Our activity is the built-in NativeActivity framework class. -->
|
||||
<activity android:name="android.app.NativeActivity"
|
||||
android:configChanges="orientation|keyboardHidden"
|
||||
android:configChanges="orientation|keyboardHidden|screenSize"
|
||||
android:screenOrientation="landscape"
|
||||
android:clearTaskOnLaunch="true" >
|
||||
<!-- android:theme="@android:style/Theme.NoTitleBar.Fullscreen" -->
|
||||
|
||||
Reference in New Issue
Block a user