Android , broadcasting parcelable data
问题 I've implemented a class that extends NotificationListenerService which works fine for picking up on notifications posted. I'm then wanting to take the statusBarNotification object received and broadcast it. I'd doing the following: @Override public void onNotificationPosted(StatusBarNotification statusBarNotification) { Intent intent = new Intent(); intent.putExtra("STATUS_BAR_NOTIFICATION",statusBarNotification); intent.setAction("com.example.NotificationPosted"); sendBroadcast(intent); }