You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
Handling BackPress event [Android]
This commit is contained in:
@@ -191,6 +191,7 @@ public class Godot extends Activity implements SensorEventListener, IDownloaderC
|
||||
protected void onMainPause() {}
|
||||
protected void onMainResume() {}
|
||||
protected void onMainDestroy() {}
|
||||
protected boolean onMainBackPressed() { return false; }
|
||||
|
||||
protected void onGLDrawFrame(GL10 gl) {}
|
||||
protected void onGLSurfaceChanged(GL10 gl, int width, int height) {} // singletons will always miss first onGLSurfaceChanged call
|
||||
@@ -727,10 +728,20 @@ public class Godot extends Activity implements SensorEventListener, IDownloaderC
|
||||
*/
|
||||
|
||||
@Override public void onBackPressed() {
|
||||
boolean shouldQuit = true;
|
||||
|
||||
for(int i=0;i<singleton_count;i++) {
|
||||
if (singletons[i].onMainBackPressed()) {
|
||||
shouldQuit = false;
|
||||
}
|
||||
}
|
||||
|
||||
System.out.printf("** BACK REQUEST!\n");
|
||||
|
||||
if (shouldQuit) {
|
||||
GodotLib.quit();
|
||||
}
|
||||
}
|
||||
|
||||
public void forceQuit() {
|
||||
|
||||
|
||||
@@ -264,7 +264,7 @@ public class GodotView extends GLSurfaceView implements InputDeviceListener {
|
||||
@Override public boolean onKeyDown(int keyCode, KeyEvent event) {
|
||||
|
||||
if (keyCode == KeyEvent.KEYCODE_BACK) {
|
||||
GodotLib.quit();
|
||||
activity.onBackPressed();
|
||||
// press 'back' button should not terminate program
|
||||
// normal handle 'back' event in game logic
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user