Created
December 15, 2017 13:27
-
-
Save martinomburajr/4a45b7da9500fdcc7569824e4fb6adb1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Retrieved from AOSP. | |
| * ActivityThread class | |
| */ | |
| private void handleLaunchActivity(ActivityClientRecord r, Intent customIntent, String reason) { | |
| //... initialize graphics,do some logging, call GC if need be, etc | |
| Activity a = performLaunchActivity(r, customIntent); | |
| //... handle how to resume an existing activity | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment