Android Activity 여러개 사용하는 방법 Code (csharp): #if UNITY_ANDROID //Grab the current activity (the one declared as MAIN in the manifest - can be an other plugin) AndroidJavaClass ajc = new AndroidJavaClass ( "com.unity3d.player.UnityPlayer" ) ; AndroidJavaObject ajo = ajc. GetStatic < AndroidJavaObject > ( "currentActivity" ) ; //Give the activity instance to my own static method to launch an activity from there var jc = new AndroidJavaClass ( "com.my.package.RootActivity" ) ; jc. CallStatic ( "launchActivity" , ajo, showUI, true , "string" , 0 ) ; #endif In the com.my.package.RootActivity java file : Code (csharp): public static void launchActivity ( Activity root , boolean param1, String param2, int param...