¡@

Home 

2014/10/16 ¤W¤È 08:18:51

android Programming Glossary: mbuilder.addaction

Determine addAction click for Android notifications

http://stackoverflow.com/questions/15350998/determine-addaction-click-for-android-notifications

PendingIntent pendingIntentYes PendingIntent.getBroadcast this 12345 yesReceive PendingIntent.FLAG_UPDATE_CURRENT mBuilder.addAction R.drawable.calendar_v Yes pendingIntentYes Maybe intent Intent maybeReceive new Intent maybeReceive.setAction CUSTOM_INTENT.. PendingIntent pendingIntentMaybe PendingIntent.getBroadcast this 12345 maybeReceive PendingIntent.FLAG_UPDATE_CURRENT mBuilder.addAction R.drawable.calendar_question Partly pendingIntentMaybe No intent Intent noReceive new Intent noReceive.setAction CUSTOM_INTENT.. PendingIntent pendingIntentNo PendingIntent.getBroadcast this 12345 noReceive PendingIntent.FLAG_UPDATE_CURRENT mBuilder.addAction R.drawable.calendar_x No pendingIntentNo This is the code of the BroadcastReceiver public class AlarmReceiver extends BroadcastReceiver..