メモ
インポート
import android.content.Intent;
ソース
//インスタンス作成
Intent intent = new Intent();
// パッケージ名とクラス名をセット
intent.setClassName("jp.android.sample", "jp.android.sample.TopMenu");
// アプリ起動
startActivity(intent);
PR
[Top]
http://mountain.ni-3.net/android/android%20%E9%96%8B%E7%99%BA%20-%20%E5%88%A5%E3%81%AE%E3%82%A2%E3%83%97%E3%83%AA%E3%82%B1%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3%E3%82%92%E8%B5%B7%E5%8B%95_191Android 開発 - 別のアプリケーションを起動