How to determine if Android App open from Notification message?

后端 未结 3 1050
渐次进展
渐次进展 2020-12-15 04:42

In general, when i have notification message on the notification bar and click on it. It open the registered App for that message.

On Startup\'s Activity, How to de

3条回答
  •  悲&欢浪女
    2020-12-15 05:29

    You need to use putExtra(ID_KEY,id) when you create your Intent for starting your application, and in your onCreate() method you can use getIntent().getExtras().getInt(ID_KEY); to retrieve your passed id integer.

提交回复
热议问题