81

アプリケーションAを次のように定義しています。

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name="com.example.MyExampleActivity"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

アプリケーションBで、アプリケーションAのアクティビティを開始するコードをどのように記述できますか?ありがとう!

4

2 に答える 2

161

「PermissionDenial:starting Intent ...」エラーに直面している場合、またはアプリの起動中に理由もなくアプリがクラッシュする場合-次に、マニフェストでこの1行のコードを使用します

android:exported="true"

finish();に注意してください。、見逃した場合はアプリがフリーズします。その言及があれば、アプリはスムーズなランチャーになります。

finish();

もう1つのソリューションは、同じアプリケーション内にある2つのアクティビティに対してのみ機能します。私の場合、アプリケーションBはコード内のクラスを認識していないcom.example.MyExampleActivity.classため、コンパイルは失敗します。

Webで検索したところ、以下のようなものが見つかりましたが、うまく機能しています。

Intent intent = new Intent();
intent.setComponent(new ComponentName("com.example", "com.example.MyExampleActivity"));
startActivity(intent);

setClassNameメソッドを使用することもできます。

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setClassName("com.hotfoot.rapid.adani.wheeler.android", "com.hotfoot.rapid.adani.wheeler.android.view.activities.MainActivity");
startActivity(intent);
finish();

あるアプリから別のアプリに値を渡すこともできます。

Intent launchIntent = getApplicationContext().getPackageManager().getLaunchIntentForPackage("com.hotfoot.rapid.adani.wheeler.android.LoginActivity");
if (launchIntent != null) {
    launchIntent.putExtra("AppID", "MY-CHILD-APP1");
    launchIntent.putExtra("UserID", "MY-APP");
    launchIntent.putExtra("Password", "MY-PASSWORD");
    startActivity(launchIntent);
    finish();
} else {
    Toast.makeText(getApplicationContext(), " launch Intent not available", Toast.LENGTH_SHORT).show();
}
于 2010-02-05T20:09:00.793 に答える
15

両方のアプリケーションの署名が同じである場合(つまり、両方のAPPが自分のものであり、同じキーで署名されている場合)、次のように他のアプリアクティビティを呼び出すことができます。

Intent LaunchIntent = getActivity().getPackageManager().getLaunchIntentForPackage(CALC_PACKAGE_NAME);
startActivity(LaunchIntent);

それが役に立てば幸い。

于 2014-01-04T23:17:22.003 に答える