web-dev-qa-db-ja.com

通知クリックからアクティビティにパラメーターを送信する方法は?

通知からアクティビティにパラメーターを送信する方法を見つけることができます。

通知を作成するサービスがあります。ユーザーが通知をクリックすると、いくつかの特別なパラメーターを使用してメインアクティビティを開きます。たとえば、アイテムIDを使用すると、アクティビティで特別なアイテム詳細ビューを読み込んで表示できます。より具体的には、ファイルをダウンロードしていますが、ファイルがダウンロードされたときに、通知をクリックしたときに特別なモードでアクティビティが開かれるようにしたいのです。私はインテントでputExtraを使用しようとしましたが、それを抽出できないようですので、間違っていると思います。

通知を作成する私のサービスのコード:

        // construct the Notification object.
     final Notification notif = new Notification(R.drawable.icon, tickerText, System.currentTimeMillis());


    final RemoteViews contentView = new RemoteViews(context.getPackageName(), R.layout.custom_notification_layout);
    contentView.setImageViewResource(R.id.image, R.drawable.icon);
    contentView.setTextViewText(R.id.text, tickerText);
    contentView.setProgressBar(R.id.progress,100,0, false);
    notif.contentView = contentView;        

    Intent notificationIntent = new Intent(context, Main.class);
    notificationIntent.putExtra("item_id", "1001"); // <-- HERE I PUT THE EXTRA VALUE
    PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
    notif.contentIntent = contentIntent;

    nm.notify(id, notif);

通知から追加のパラメーターを取得しようとするアクティビティのコード:

 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.main);


    Bundle extras = getIntent().getExtras();
    if(extras != null){
        Log.i( "dd","Extra:" + extras.getString("item_id") );
    }

エキストラは常にnullであり、ログには何も記録されません。

ところで... onCreateはアクティビティの開始時にのみ実行されます。アクティビティが既に開始されている場合は、余分なものを収集し、受け取ったitem_idに応じてアクティビティを提示することもできます。

何か案は?

191
Vidar Vestnes

このガイド( 通知の作成 )と、ApiDemosの「StatusBarNotifications」と「NotificationDisplay」のサンプルをご覧ください。

アクティビティが既に実行されているかどうかを管理するには、2つの方法があります。

  1. アクティビティの起動時にインテントにFLAG_ACTIVITY_SINGLE_TOPフラグを追加してから、アクティビティクラスの実装onNewIntent(Intent intent) イベントハンドラー、その方法で呼び出された新しいインテントにアクセスできる方法(getIntent()を呼び出すだけとは異なり、これは常にアクティビティを起動した最初のインテントを返します) 。

  2. 番号1と同じですが、Intentにフラグを追加する代わりに、アクティビティAndroidManifest.xmlに "singleTop"を追加する必要があります。

インテントエクストラを使用する場合は、フラグPendingIntent.FLAG_UPDATE_CURRENTを指定してPendingIntent.getActivity()を呼び出すことを忘れないでください。そうしないと、すべての通知で同じエクストラが再利用されます。

230
Lucas S.

アプリケーションにメッセージ通知が表示される同様の問題がありました。複数の通知があり、各通知をクリックすると、メッセージの表示アクティビティにその通知の詳細が表示されます。ビューメッセージインテントで同じ追加パラメーターが受信されるという問題を解決しました。

これはこれを修正したコードです。通知インテントを作成するためのコード。

 Intent notificationIntent = new Intent(getApplicationContext(), viewmessage.class);
    notificationIntent.putExtra("NotificationMessage", notificationMessage);
    notificationIntent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingNotificationIntent = PendingIntent.getActivity(getApplicationContext(),notificationIndex,notificationIntent,PendingIntent.FLAG_UPDATE_CURRENT);
    notification.flags |= Notification.FLAG_AUTO_CANCEL;
    notification.setLatestEventInfo(getApplicationContext(), notificationTitle, notificationMessage, pendingNotificationIntent);

ビューメッセージアクティビティのコード。

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    onNewIntent(getIntent());
}

@Override
public void onNewIntent(Intent intent){
    Bundle extras = intent.getExtras();
    if(extras != null){
        if(extras.containsKey("NotificationMessage"))
        {
            setContentView(R.layout.viewmain);
            // extract the extra-data in the Notification
            String msg = extras.getString("NotificationMessage");
            txtView = (TextView) findViewById(R.id.txtMessage);
            txtView.setText(msg);
        }
    }


}

少し遅れるかもしれませんが、これの代わりに:

public void onNewIntent(Intent intent){
    Bundle extras = intent.getExtras();
    Log.i( "dbg","onNewIntent");

    if(extras != null){
        Log.i( "dbg", "Extra6 bool: "+ extras.containsKey("net.dbg.Android.fjol"));
        Log.i( "dbg", "Extra6 val : "+ extras.getString("net.dbg.Android.fjol"));

    }
    mTabsController.setActiveTab(TabsController.TAB_DOWNLOADS);
}

これを使って:

Bundle extras = getIntent().getExtras();
if(extras !=null) {
    String value = extras.getString("keyName");
}
26
pinaise

ここで同じ問題に遭遇します。 PendingIntentの作成中に、異なるリクエストコードを使用し、通知と同じIDを使用して解決します。しかし、なぜこれが行われるべきかはわかりません。

PendingIntent contentIntent = PendingIntent.getActivity(context, **id**, notificationIntent, 0);
notif.contentIntent = contentIntent;
nm.notify(**id**, notif);
18
jamchen

いくつかのメーリングリストや他のフォーラムを読んだ後、私はそのトリックがSOM固有のデータを意図に追加しているように見えることを発見しました。

このような:

   Intent notificationIntent = new Intent(Main.this, Main.class);
   notificationIntent.putExtra("sport_id", "sport"+id);
   notificationIntent.putExtra("game_url", "gameURL"+id);

   notificationIntent.setData((Uri.parse("foobar://"+SystemClock.elapsedRealtime()))); 

なぜこれを行う必要があるのか​​理解していない、それは余分なものだけで識別できる意図と関係がある...

13
Vidar Vestnes

私はすべてを試しましたが、何も機能しませんでした。

最終的に次の解決策を思いつきました。

1-アクティビティAndroid:launchMode = "singleTop"のマニフェスト追加

2-保留中のインテントに次の操作を実行させながら、intent.putString()またはintent.putInt()を直接使用する代わりにbundleを使用します

                    Intent notificationIntent = new Intent(getApplicationContext(), CourseActivity.class);

                    Bundle bundle = new Bundle();
                    bundle.putString(Constants.EXAM_ID,String.valueOf(lectureDownloadStatus.getExamId()));
                    bundle.putInt(Constants.COURSE_ID,(int)lectureDownloadStatus.getCourseId());
                    bundle.putString(Constants.IMAGE_URL,lectureDownloadStatus.getImageUrl());

                    notificationIntent.putExtras(bundle);

                    notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |
                            Intent.FLAG_ACTIVITY_SINGLE_TOP);
                    PendingIntent contentIntent = PendingIntent.getActivity(getApplicationContext(),
                            new Random().nextInt(), notificationIntent,
                            PendingIntent.FLAG_UPDATE_CURRENT); 
9
Dheeraj Sachan

AndroidManifest.xml

LaunchMode = "singleTop"を含める

<activity Android:name=".MessagesDetailsActivity"
        Android:launchMode="singleTop"
        Android:excludeFromRecents="true"
        />

SMSReceiver.Java

IntentおよびPendingIntentのフラグを設定します

Intent intent = new Intent(context, MessagesDetailsActivity.class);
    intent.putExtra("smsMsg", smsObject.getMsg());
    intent.putExtra("smsAddress", smsObject.getAddress());
    intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);

    PendingIntent contentIntent = PendingIntent.getActivity(context, notification_id, intent, PendingIntent.FLAG_UPDATE_CURRENT);

MessageDetailsActivity.Java

onResume()-毎回呼び出され、エキストラをロードします。

Intent intent = getIntent();
    String extraAddress = intent.getStringExtra("smsAddress");
    String extraBody = intent.getStringExtra("smsMsg");

それが役立つことを願っています、それはstackoverflowに関する他の答えに基づいていましたが、これは私のために働いた最も更新されたものです.

2
Miguel Jesus

簡単です、これはオブジェクトを使用した私のソリューションです!

私のPOJO

public class Person implements Serializable{

    private String name;
    private int age;

    //get & set

}

メソッド通知

  Person person = new Person();
  person.setName("david hackro");
  person.setAge(10);

    Intent notificationIntent = new Intent(this, Person.class);
    notificationIntent.putExtra("person",person);
    notificationIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);

NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.notification_icon)
                .setAutoCancel(true)
                .setColor(getResources().getColor(R.color.ColorTipografiaAdeudos))
                .setPriority(2)
                .setLargeIcon(bm)
                .setTicker(fotomulta.getTitle())
                .setContentText(fotomulta.getMessage())
                .setContentIntent(PendingIntent.getActivity(this, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT))
                .setWhen(System.currentTimeMillis())
                .setContentTitle(fotomulta.getTicketText())
                .setDefaults(Notification.DEFAULT_ALL);

新しいアクティビティ

 private Person person;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_notification_Push);
    person = (Person) getIntent().getSerializableExtra("person");
}

幸運!!

2
David Hackro

いくつかの検索を行った後、Android開発者ガイドから解決策を得ました

PendingIntent contentIntent ;
Intent intent = new Intent(this,TestActivity.class);
intent.putExtra("extra","Test");
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);

stackBuilder.addParentStack(ArticleDetailedActivity.class);

contentIntent = stackBuilder.getPendingIntent(0,PendingIntent.FLAG_UPDATE_CURRENT);

Test ActivityクラスでIntentの余分な値を取得するには、次のコードを記述する必要があります。

 Intent intent = getIntent();
 String extra = intent.getStringExtra("extra") ;
1
mohit

サービスにはPendingIntent.FLAG_UPDATE_CURRENTを使用します

私にとっては仕事です。

0
Ali Bagheri

使用する場合

Android:taskAffinity="myApp.widget.notify.activity"
Android:excludeFromRecents="true"

起動するアクティビティのAndroidManifest.xmlファイルで、意図で次を使用する必要があります。

Intent notificationClick = new Intent(context, NotifyActivity.class);
    Bundle bdl = new Bundle();
    bdl.putSerializable(NotifyActivity.Bundle_myItem, myItem);
    notificationClick.putExtras(bdl);
    notificationClick.setData(Uri.parse(notificationClick.toUri(Intent.URI_INTENT_SCHEME) + myItem.getId()));
    notificationClick.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);  // schließt tasks der app und startet einen seperaten neuen

    TaskStackBuilder stackBuilder = TaskStackBuilder.create(context);
    stackBuilder.addParentStack(NotifyActivity.class);
    stackBuilder.addNextIntent(notificationClick);

    PendingIntent notificationPendingIntent = stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
    mBuilder.setContentIntent(notificationPendingIntent);

重要なのは、一意のデータを設定することです。次のような一意のIDを使用します。

notificationClick.setData(Uri.parse(notificationClick.toUri(Intent.URI_INTENT_SCHEME) + myItem.getId()));
0
Scrounger

通知の実装では、次のようなコードを使用します。

NotificationCompat.Builder nBuilder = new NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID);
...
Intent intent = new Intent(this, ExampleActivity.class);
intent.putExtra("EXTRA_KEY", "value");

PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
nBuilder.setContentIntent(pendingIntent);
...

ExampleActivityでIntentの追加の値を取得するには、次のコードを使用します。

...
Intent intent = getIntent();
if(intent!=null) {
    String extraKey = intent.getStringExtra("EXTRA_KEY");
}
...

非常に重要な注:Intent :: putExtra()メソッドはオーバーロードされています。余分なキーを取得するには、Intent :: get [Type] Extra()メソッドを使用する必要があります。

注:NOTIFICATION_IDおよびNOTIFICATION_CHANNEL_IDはExampleActivityで宣言された定数です

0
Carlos Espinoza

G'day、私もこれらの投稿で言及されたすべてを試したと言うことができます。私にとって一番の問題は、新しいIntentには常にnullバンドルがあったことです。私の問題は、「。thisまたは.thatを含めたか」の詳細に集中しすぎることでした。私の解決策は、詳細から一歩下がって、通知の全体的な構造を見ることでした。それをやったとき、コードの重要な部分を正しい順序で配置することができました。したがって、同様の問題がある場合は、以下を確認してください。

1. Intent notificationIntent = new Intent(MainActivity.this, NotificationActivity.class);

2a. Bundle bundle = new Bundle();

//データ型を指定する方がずっと好きです。例:bundle.putInt

2b. notificationIntent.putExtras(bundle);
3. PendingIntent contentIntent = PendingIntent.getActivity(MainActivity.this, WIZARD_NOTIFICATION_ID, notificationIntent,
                    PendingIntent.FLAG_UPDATE_CURRENT);
notificationIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
4. NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);
5.          NotificationCompat.Builder nBuilder =
                    new NotificationCompat.Builder(this)
                            .setSmallIcon(R.drawable.ic_notify)
                            .setContentTitle(title)
                            .setContentText(content)
                            .setContentIntent(contentIntent)
                            .setDefaults(Notification.DEFAULT_SOUND | Notification.DEFAULT_VIBRATE)
                            .setAutoCancel(false)//false is standard. true == automatically removes the notification when the user taps it.
                            .setColor(getResources().getColor(R.color.colorPrimary))
                            .setCategory(Notification.CATEGORY_REMINDER)
                            .setPriority(Notification.PRIORITY_HIGH)
                            .setVisibility(NotificationCompat.VISIBILITY_PUBLIC);
            notificationManager.notify(WIZARD_NOTIFICATION_ID, nBuilder.build());

これでsequence私は有効なバンドルを取得します。

0
Peter Suter

通知を表示している間、解決されるよりもPendingIntentとして使用してください。

PendingIntent intent = PendingIntent.getActivity(this、0、notificationIntent、PendingIntent.FLAG_UPDATE_CURRENT);

PendingIntent.FLAG_UPDATE_CURRENTを最後のフィールドとして追加します。

0
M.Noman