Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cordova-plugin-local-notifications
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nabil Sadki
cordova-plugin-local-notifications
Commits
4815d591
Commit
4815d591
authored
Jan 02, 2015
by
PKnittel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Foreground Mode on android
parent
3dde85cf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
4 deletions
+25
-4
LocalNotification.java
src/android/LocalNotification.java
+15
-1
Receiver.java
src/android/Receiver.java
+10
-3
No files found.
src/android/LocalNotification.java
View file @
4815d591
...
...
@@ -35,6 +35,7 @@ import org.json.JSONArray;
import
org.json.JSONException
;
import
org.json.JSONObject
;
import
android.app.Activity
;
import
android.app.AlarmManager
;
import
android.app.NotificationManager
;
import
android.app.PendingIntent
;
...
...
@@ -43,6 +44,7 @@ import android.content.Intent;
import
android.content.SharedPreferences
;
import
android.content.SharedPreferences.Editor
;
import
android.os.Build
;
import
android.widget.Toast
;
/**
* This plugin utilizes the Android AlarmManager in combination with StatusBar
...
...
@@ -59,6 +61,7 @@ public class LocalNotification extends CordovaPlugin {
protected
static
Context
context
=
null
;
protected
static
Boolean
isInBackground
=
true
;
private
static
ArrayList
<
String
>
eventQueue
=
new
ArrayList
<
String
>();
static
Activity
activity
;
@Override
public
void
initialize
(
CordovaInterface
cordova
,
CordovaWebView
webView
)
{
...
...
@@ -66,6 +69,7 @@ public class LocalNotification extends CordovaPlugin {
LocalNotification
.
webView
=
super
.
webView
;
LocalNotification
.
context
=
super
.
cordova
.
getActivity
().
getApplicationContext
();
LocalNotification
.
activity
=
super
.
cordova
.
getActivity
();
}
@Override
...
...
@@ -321,7 +325,6 @@ public class LocalNotification extends CordovaPlugin {
/**
* Clear all notifications without canceling repeating alarms
*
*/
public
static
void
clearAll
(){
SharedPreferences
settings
=
getSharedPreferences
();
...
...
@@ -679,5 +682,16 @@ public class LocalNotification extends CordovaPlugin {
return
arguments
;
}
public
static
void
showNotification
(
String
title
,
String
notification
){
int
duration
=
Toast
.
LENGTH_LONG
;
if
(
title
.
equals
(
""
)){
title
=
"Notification"
;
}
String
text
=
title
+
" \n "
+
notification
;
Toast
notificationToast
=
Toast
.
makeText
(
context
,
text
,
duration
);
notificationToast
.
show
();
}
}
src/android/Receiver.java
View file @
4815d591
...
...
@@ -79,10 +79,17 @@ public class Receiver extends BroadcastReceiver {
}
else
{
LocalNotification
.
add
(
options
.
moveDate
(),
false
);
}
if
(!
LocalNotification
.
isInBackground
&&
options
.
getForegroundMode
()){
if
(
options
.
getInterval
()
==
0
)
{
LocalNotification
.
unpersist
(
options
.
getId
());
}
LocalNotification
.
showNotification
(
options
.
getTitle
(),
options
.
getMessage
());
fireTriggerEvent
();
}
else
{
Builder
notification
=
buildNotification
();
Builder
notification
=
buildNotification
();
showNotification
(
notification
);
showNotification
(
notification
);
}
}
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment