我刚刚读到可以将一些消息分组到collapse_key。是否可以在IntentService中获取此collapse_key?出于识别原因,我需要它。
答案 0 :(得分:1)
你的意思是有意图吗?试试这个:
String collapseKey = intent.getStringExtra("collapse_key");
答案 1 :(得分:1)
在你的IntentService中这样做:
intent.getExtras().getString("collapse_key");