web-dev-qa-db-ja.com

保留中のインテントを使用して新しいアクティビティを開始する方法

保留中のインテントを使用して新しいアクティビティを起動する方法と、保留中のインテントを使用して値を渡す方法を教えてください。前もって感謝します。

18
Matthew
Intent intent = new Intent(getApplicationContext(), ActivityToLaunch.class);
intent.putExtra(<oneOfThePutExtraFunctions>);
PendingIntent pi = PendingIntent.getActivity(this, 0, intent, 0);

次の場所にあるさまざまなIntent.PutExtra()関数のいずれかを使用して、インテントにデータを追加できます。 http://developer.Android.com/reference/Android/content/Intent.html

次に、PendingIntentを起動する準備ができたら、次の場所にあるSend()関数の1つを使用します。 http://developer.Android.com/reference/Android/app/PendingIntent.html

25
sparksalot