Added "Touch to open Briar" to ongoing notification.

This commit is contained in:
akwizgran
2016-05-04 09:32:47 +01:00
parent 6751ded313
commit 5a84e0fe5c
2 changed files with 2 additions and 1 deletions

View File

@@ -74,7 +74,7 @@ public class BriarService extends Service {
NotificationCompat.Builder b = new NotificationCompat.Builder(this);
b.setSmallIcon(R.drawable.ongoing_notification_icon);
b.setContentTitle(getText(R.string.ongoing_notification_title));
b.setContentText("");
b.setContentText(getText(R.string.ongoing_notification_text));
b.setWhen(0); // Don't show the time
b.setOngoing(true);
Intent i = new Intent(this, NavDrawerActivity.class);