PendingIntent Bundle null解决方案

在安卓开发中,用通知栏,如果点击通知栏条目,跳转Intent需要传值的时候会出现问题,传入值失败。

Intent intent;  
PendingIntent sender=PendingIntent.getService(this, 0,   
intent=new Intent(this, PlacesProximityHandlerService.class), 0);  

intent.setAction("PlacesProximityHandlerService"); 
intent.putExtra("lat", objPlace.getLat()); 

  

需要给intent额外设置一个action动作,那样就不会出问题了。

posted @ 2015-11-21 12:43  狂奔的小狮子  阅读(240)  评论(0编辑  收藏  举报