The localnotification tag has no wiki summary.
1
vote
4answers
46 views
Do something when local notification arrives or exceed the number of total notifications that can be used
So, I have an exercise app where we have 10/15 Second repetitive timers through which we show the progress done by the User. For making it work on background as well, I have used local notifications. ...
0
votes
0answers
19 views
Blackberry Local Notifications (not push notifications)
I searched for hours for it. But couldn't find how to make local notifications, like when we receive a text a notification occurs. A red spot on the app and received text message and its number in the ...
0
votes
1answer
27 views
iOS: How to check if screen is locked when app is in background
Is it possible to notify an app (inactive OR active but in background) when screen is locked / unlocked?
Something like: http://stackoverflow.com/a/3617552/1011125
0
votes
0answers
72 views
Alarm Clock like script for my cordova 2.7.0 android project
I'm trying to build an android app by using phonegap.
I need to put a reminder into my app which will notificate the user at any time of the day.
I have tried to intagrate this plug-in; ...
0
votes
2answers
26 views
App is in background or running when handling LocalNotification
When the scheduled NSLocalNotification was fired, if the app is running , or user select the detail in alert while app is in the background, the app delegate's didReceiveLocalNotification will be ...
0
votes
0answers
50 views
phonegap android localnotification plugin display nothing
i have followed this: localnotification android phonegap for cordova 2.x+
getting nothing in device: here is some results of my console.log:
05-07 21:04:20.218: E/dalvikvm(21039): threadid=5: stuck ...
0
votes
2answers
42 views
notification.confirm callback function called always
I am calling the notification.confirm of phonegap while using angular-js.
I have code as :
ng-click= func(item)
$scope.func = function(item) {
navigator.notification.confirm('Delete?', ...
1
vote
0answers
64 views
Working example of the localnotification phonegap plugin
I spent hours and hours trying to make the localnotification phonegap plugin work. I read many stackoverflow answers and try many Cordova, Eclipse, Android versions, but without any succes. Problems ...
0
votes
1answer
45 views
How do I cancel a notification only?
I wanted to do something. My notifications are set to 11 and 12 hours. I would like to unsubscribe notification of these are set just hours 11. How do I make it?
My code;
NSCalendar *greg = ...
0
votes
0answers
31 views
Using Wi-Fi to create local notification from background (iOS)
So I know that apple has started allowing geofencing and the triggering of a local notification based on entering a certain region, but from what the developers manual said, this region would be of a ...
0
votes
0answers
209 views
Find My Friends - 'Notify Me' feature.
In the 'Notify Me' feature. I noticed that user1 and/or user2 do not need to launch this app in order to receive the geofence notification.The notification will still be pushed when both users have ...
2
votes
1answer
49 views
How to cancel all local notifications when app is deleted from background not from device
I want to cancel all local notifications when app deleted from background, not from Device.
I know this is
[[UIApplication sharedApplication] cancelAllLocalNotifications];
but my Question is ...
0
votes
0answers
46 views
Local Notification only firing once?
I have a local notification set to fire on the specified date when a user changes the date
on a UIDatePicker. However, when I ran the app, the notification fired correctly, but when
I went and ...
1
vote
2answers
85 views
Local Notification issue
i am using following code for local notification
for (int i=0;i<newBirthDates.count;i++)
{
NSDate *date =[Formatter1 dateFromString:[newBirthDates objectAtIndex:i ]];
NSComparisonResult ...
0
votes
1answer
127 views
LocalNotification Android
I'm trying to use the LocalNotification plugin for my Phonegap app.
https://github.com/phonegap/phonegap-plugins/tree/master/Android/LocalNotification
After following all steps.. I got a lot of ...
2
votes
3answers
155 views
How to hide the close button and close action in alert view to display only “Open app” buttom
I have implemented UIlocalNotification method using the link
Adding Local Notifications With iOS 4
in my app my requirement is that
in notification alert we need to have only "Show me" button wich ...
0
votes
1answer
55 views
How to set the repeat UILocal Notifications on the select list of Weekdays
I have implemented UILocal Notification using the following link
http://useyourloaf.com/blog/2010/07/31/adding-local-notifications-with-ios-4.html
And i have modified it to set the repet ...
0
votes
2answers
76 views
can I use local notification and push notification together in ios?
In my app, is it possible to use both local and push notification together in iOS?
1
vote
1answer
133 views
Blackberry - “you currently have no new notifications”
I'm using the code below (especially pushMessage method) to show some notification to user:
public final class MyApplicationMessageFolder
{
public static final long MyFolderId = ...
1
vote
0answers
19 views
schedule localnotifcation on future date range
- (void) scheduleGeneralNotificationFrequentlyWithItem:(ToDoItem *)item interval:(int)minutesBefore frequent:(NSCalendarUnit)frequentUnit{
NSCalendar *calendar = [NSCalendar ...
1
vote
2answers
106 views
notification launch custom method/class
just want to make sure i'm on the right path.
I'm creating a local notification as an alarm clock. when the user hits button... I want it to DO STUFF.
I'm thinking I have to call my method in
...
0
votes
0answers
41 views
Push/local notification for app deletion from store
I'm deleting an old version of an app developed by a vendor and adding a new app developed in house. This is not an update, but rather a new product with similar functionality. Is there a best ...
1
vote
1answer
110 views
JS does not recognize the plugin of cordova
I use HTML5 and PhoneGap,
On application I have Local Notification.
Below is the code:
Local Notification
The Android implementation for local notification uses a similar interface as the existing ...
0
votes
2answers
138 views
What's wrong with my Android notification schedule function?
I am trying to make a simple function that schedules local notifications in Android but it doesn't work. Am I missing something? i. e. a permission in the manifest or something like that? I am pretty ...
1
vote
2answers
670 views
Clear Android's Local Notifications cordova plugin
I use Phonegap's localNotification Plugin for Android to show notifications on specific dates.
I use Cordova [2.2] & I used cordova's upgrading tutorial to modify the plugin.
The notification ...
2
votes
1answer
404 views
Using Cordova's Local Notification Plugin For Android
I'm trying to alert notifications using phonegap's local Notification Plugin, and it alerts notifications when the application runs, but I don't know how can I configure it to alert plugins on ...
2
votes
4answers
2k views
Cordova Local Notification Android Plugin 2.2 upgrade
I'm working on a "Reminders" application on Android using Phonegap[Cordova 2.2].
The user enters a specific date for his reminder and I'm supposed to notify him on time.
I use Android's Notification ...
0
votes
1answer
446 views
how to show local push notification (on app icon on home screen like i-phone) in android
I am given a task to show local push notification. I have successfully completed showing push notification on bar. But also I have to show local notification on app launching icon on home screen like ...
3
votes
2answers
376 views
phonegap android local notification cancelAll not working
hi I am using phonegap local notification plugin in my android project.
notification are working great.
i can delete a notification with ID
but in my app i have to delete all notification option, ...
0
votes
2answers
323 views
UILocalNotification repeat every minute
I want to send local notification every minute and this is code that I'm using:
[[UIApplication sharedApplication] cancelAllLocalNotifications];
UILocalNotification *notif = ...
1
vote
0answers
52 views
Does iOS invalidates localNotifications if the user modifies the date/time
If current date is 20-November-2012 9:00 AM, in my app if I schedule a local notification with firedate say 21-November-2012 10:00 AM and run my application and if I modify the date/time in settings ...
2
votes
2answers
207 views
Launch Closed iOS App From Local Notification
When my iOS application is running in the background it responds fine to
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
but when ...
2
votes
1answer
118 views
how to clear the item on notification bar by using phonegap localnotification plugin
As the title, I'm using android localnotification phonegap plugin. Now I can force a notification on that bar, and if I touch on that one, the app will be re-open, but that notification is still on ...
3
votes
2answers
199 views
Local Notification alternative week repeat
I Have two notification and I want to repeat it alternative week.
E.g. One notification set on 1st week's monday and it should repeat on 3rd week's monday.
Second notification set on 2nd week's ...
1
vote
0answers
660 views
xcode iOS 6 Local notification with UIAlertView disappears after 5 or 6 seconds?
I am using a UILocalNotification to schedule a UIAlertView, which works great. However, in iOS 6 (possibly iOS 5) the notification disappears after 5 or 6 seconds. Is there any way to prevent the ...
1
vote
1answer
250 views
Performance issue with scheduleLocalNotification(Large number of local notifications) [duplicate]
Possible Duplicate:
Schedule number of Local Notifications
I'm facing performance problem with scheduleLocalNotification.
I'm trying to register large number of local notifications.
It's ...
0
votes
2answers
252 views
Local Notification Issue?
I am new in iPhone application development. I am doing alarm application. In this application I am using local notification. I am calling notification method in done button action. Now I clicked done ...
-1
votes
2answers
1k views
How to develop alarm app? [closed]
Hi developer friends,
I am trying to build an alarm clock application.I could not find any proper code. So anyone please suggest me some tutorial links or code to refer to.
Thanks,
0
votes
0answers
36 views
How to pause the notifications when the screen is locked
I'm developing an app for iphone and I need that when the screen is locked notifications are paused, and when the screen is unlocked notifications continue to be displayed. (using local notication)
3
votes
1answer
1k views
background notification in phonegap
I'm building a simple alarm clock with Phonegap for ios, and I've got the notifications triggering on background and foreground. (All with the help of Drew Dahlman and this tutorial ...
0
votes
1answer
406 views
Can't get local notification to trigger in phonegap
I'm trying to build an alarm clock app, and am using the localNotification and trying to adapt the code from http://www.drewdahlman.com/meusLabs/?p=84.
My app is a combination of phonegap with ...
1
vote
1answer
267 views
UILocalNotification repeat alert 2 minutes later
I just want to but sure I'm understanding this correctly.
It looks like the only way to have an UILocalNotification repeat ONLY ONCE 2 minutes after the first one is to schedule 2 separate local ...
0
votes
1answer
149 views
localNotification.soundName from cache
is it possible to assign a soundname for localNotification from the device cache?
I've tried to assign an existing file from the application bundle and it worked properly.
My app will record a ...
1
vote
0answers
244 views
How to start an activity by tapping notification of phonegap android status bar LocalNotification plugin?
I'm developing an android application with phoneGap and LocalNotification plugin.
As for the notifications part, it's already working no problem there.
I just want the app to open when I tap the ...
0
votes
1answer
485 views
How can I make my PhoneGap android app onPause by overwriting BackButton?
I'm trying to develop an android app with phonegap and LocalNotification plugin.
I want to running my app in onPause ,
On my index.html
document.addEventListener("pause", onPause, false);
function ...
0
votes
2answers
190 views
Send request to server when app in background [closed]
I have an application that shows live gold price. It is necessary to notify user when gold price is greater than a specific price even if app is in background. When app is in background, I have to ...
0
votes
1answer
60 views
iPhone Application User Interface gets affected with ON CALL Notification
I am developing iPhone application, my application user interface gets affected when there is call on my device.
i.e By attending the call, i am also using my application, at that time on call ...
2
votes
2answers
2k views
Trying to get the Android LocalNotification plugins for phonegap to work in cordova-1.6.0
I'm trying to upgrade a phonegap-1.4.1 project that uses the LocalNotification plugin for Android to cordova-1.6.0
I found this link here: ...
2
votes
1answer
2k views
iOS UILocalNotification - No delegate methods triggered when app is running in background and the icon is clicked upon notification
iPhone version - 5.1 (9B176)
Below is the series of events during Local Notification where in which didFinishLaunchingWithOptions method is not invoked.
App is running in background.
Got local ...
0
votes
0answers
188 views
iOS local notification was fired on wrong date time
I've created a old uilocalnotification, now, I want to update it, I searched on Google but there are no way to update the local notification. So, I decided to cancel it and create a new local ...



