implement Activity.onPostCreate() and onPostResume()

These are used by androidx to handle the Fragment lifecycle
This commit is contained in:
Julian Winkler
2024-10-05 16:52:53 +02:00
parent 21a75d7ff0
commit 1b46d728e3
4 changed files with 22 additions and 0 deletions

View File

@@ -9,8 +9,10 @@ struct handle_cache {
struct {
jclass class;
jmethodID onCreate;
jmethodID onPostCreate;
jmethodID onStart;
jmethodID onResume;
jmethodID onPostResume;
jmethodID onWindowFocusChanged;
jmethodID onDestroy;
jmethodID onStop;