PendingIntent プロジェクトが によって取得されることはわかっていPendingIntent.getActivity(context, ... , intent, ...) function
ます。
通知を使用した後、ストアをインテントにスキップするために必要な情報。次に、インテントが にカプセル化されPendingIntent
ます。今私はインテントを取得したいですpendingIntent
。または でインテント情報を取得したいpendingIntent
。どうすれば意図を得ることができますか?
送り主:
Intent openintent = new Intent(this, ZXReaderAbout.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, openintent, 0);//send openintent intent to system when click information
notification.setLatestEventInfo(this, "11", "22", contentIntent);
受信セクション:
PendingIntent pIntent = notification.contentIntent;
つまり、 からカプセル化インテントを取得できますpIntent
。
どんな提案でも非常に感謝しています。