【Android】指定したアプリを起動する方法(クラス名を指定する)

2019年7月29日

クラス名を指定してインストールしている他のアプリを起動する方法について。

try {
	Intent i = new Intent();
	i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
	i.setClassName("パッケージ名","クラス名");
	startActivity(i);
}
catch (Exception e) {
	Toast.makeText(getApplicationContext(), "指定したアプリがありません",
		Toast.LENGTH_SHORT).show();
}

スポンサーリンク