Notifications
Clear all
BugOverflow
1
Posty
1
Users
0
Reactions
832
Widok
0
24/09/2020 1:41 pm
Topic starter
example
1 Answer
0
24/09/2020 1:42 pm
Topic starter
get topic title/from
getIntent().getStringExtra("from");
get all data for notification
val i = intent val extras = i.extras if (extras != null) { for (key in extras.keySet()) { val value = extras[key] Log.d("MY_DEBUG_TAG", "EXTRA DATA KEY: $key Value: $value") } }