2017-11-28 2 views

답변

0

것은 당신이 더 많은 정보를 원하시면이

Intent launchIntent = new Intent(Intent.ACTION_MAIN); 
       launchIntent.addCategory(Intent.CATEGORY_LAUNCHER); 
       ComponentName cp = new ComponentName("Your App Packge Name that Contains Register Activity", "Register Activity Name"); 
       launchIntent.setComponent(cp); 

       startActivity(launchIntent); 

같은 시도해야 : 내가 사용 APP2 열 수 있어요 Android : Call activity of another application

관련 문제