어플 명만 가지고 소스상에서 다른 어플을 실행시킬수 있는 기능이 있을까요?
예들들어 .open("카카오톡") 이라던지...ㅠㅠ
File apkFile = new File(Environment.getExternalStorageDirectory().getAbsoluteFile()+"/다른APK파일명"); Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive"); startActivity(intent);
로그인 유지