Top "Android-pendingintent" questions

An Android class that provides a description of an Intent and target action to perform with it

Open android app from PUSH notification

Got a little problem that's been bugging me.. I've set up my application to receive PUSH notifications from Urban Airship …

android push-notification android-pendingintent urbanairship.com
Didn't include a pendingIntent in the extras?

I came across this Error message on Logcat while working on an app. Can anyone tell me what it means? 07…

android alarmmanager android-pendingintent
How to use "goAsync" for broadcastReceiver?

Background Starting with Honeycomb (API 11) , Android has a feature to allow the broadcastReceiver run in an async way, providing it …

android asynchronous broadcastreceiver android-pendingintent
AlarmManager, BroadcastReceiver and Service not working

I'm refactoring some code so that my app will pull data from a website once a day at a given …

android broadcastreceiver alarmmanager android-pendingintent
putExtra using pending intent not working

I have written a code in my GCMIntentservice that sends push notifications to many users. I use the NotificationManager that …

push-notification android-notifications android-notification-bar android-pendingintent
Starting app only if its not currently running

I am sending push notification to users which when clicking on it opens the app. My problem is that when …

android notifications push-notification android-pendingintent
Multiple calls to AlarmManager.setRepeating deliver the same Intent/PendingIntent extra values, but I supplied different ones

Solved while writing this question, but posting in case it helps anyone: I'm setting multiple alarms like this, with different …

android android-pendingintent extras alarms
Android: Start Service with Context.startService vs PendingIntent.getService

Context.startService Intent intent = new Intent(context, MyService.class); context.startService(intent); PendingIntent.getService Intent intent = new Intent(context, MyService.…

android android-intent android-context android-pendingintent
Pending intent with ONE_SHOT flag

Currently I've got this code: public static void setupAlarm(Context context) { Intent myIntent = new Intent(context, Receiver.class); PendingIntent pendingIntent = …

android alarmmanager android-pendingintent
PendingIntent get requestCode

I use an AlarmManager to start a service. When i set up the AlarmManager i use the PendingIntent and use …

android notifications broadcastreceiver alarmmanager android-pendingintent