Я пытаюсь создать локальные запланированные уведомления с помощью приложения Qt для Android.Я следовал за этим ответом: Невозможно запланировать уведомление с AlarmManager на Android (используя Qt) , но я не могу заставить его работать.
Ниже приведен код messagesclient.h:
#ifndef NOTIFICATIONCLIENT_H
#define NOTIFICATIONCLIENT_H
#include <QObject>
class NotificationClient : public QObject
{
explicit NotificationClient(QObject *parent = 0);
int createNotification(Qstring title, Qstring content);
};
#endif // NOTIFICATIONCLIENT_H
messagesclient.cpp
#include "notificationclient.h"
#include <QtAndroidExtras/QAndroidJniObject>
NotificationClient::NotificationClient(QObject *parent)
: QObject(parent)
{
}
int NotificationClient::createNotification(Qstring title, Qstring content);
{
QAndroidJniObject javaNotification = QAndroidJniObject;
QAndroidJniObject::callStaticMethod<void>("ScheduledNotifications",
"createNotification",
"(Ljava/lang/String;)V",
javaNotification.object<jstring>());
}
ScheduleNotification.java
class ScheduledNotifications {
static public int notification_id = 0;
static int scheduleNotification(String title, String content, int futureInMilliseconds) {
++notification_id;
Intent notificationIntent = new Intent(QtNative.activity(), NotificationPublisher.class);
notificationIntent.putExtra(NotificationPublisher.NOTIFICATION_ID, notification_id);
notificationIntent.putExtra(NotificationPublisher.NOTIFICATION, createNotification(title,content));
PendingIntent pendingIntent = PendingIntent.getBroadcast(QtNative.activity(), 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager alarmManager = (AlarmManager)QtNative.activity().getSystemService(Context.ALARM_SERVICE);
alarmManager.set(AlarmManager.RTC_WAKEUP, /*futureInMilliseconds*/0, pendingIntent);
Log.d("!" ,"Scheduled");
return notification_id;
}
static public Notification createNotification(String title, String content) {
Notification.Builder builder = new Notification.Builder(QtNative.activity());
builder.setContentTitle(title);
builder.setContentText(content);
return builder.build();
}
}
NotificationPublisher.java
class NotificationPublisher extends BroadcastReceiver {
public static String NOTIFICATION_ID = "notification-id";
public static String NOTIFICATION = "notification";
public void onReceive(Context context, Intent intent) {//Called when its time to show the notification ...
Log.d("!", "Notified");
NotificationManager notificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = intent.getParcelableExtra(NOTIFICATION);
int id = intent.getIntExtra(NOTIFICATION_ID, 0);
notificationManager.notify(id, notification);
}
}
Я не совсем уверен, как это сделать.Если кто-то может предоставить правильный пример с локальным уведомлением в Qt, это было бы очень полезно
спасибо !!