标签:
android notification 传值关键在
onNewIntent方法里获取
@Override
protected void onCreate(Bundle savedInstanceState) {
processIntent(getIntent());
}
@Override
protected void onNewIntent(Intent intent) {
processIntent(intent);
};
private void processIntent(Intent intent){
//get your extras
}
标签:
原文地址:http://www.cnblogs.com/likwo/p/4343406.html