什么是通过Android应用程序在特定时间发送通知的最佳方法?

时间:2017-08-24 05:44:19

标签: android alarmmanager android-notifications

到目前为止,我已经尝试过报警管理器,该设备适用于具有现货设备的设备,但会对诸如One plus,Xiomi等设备造成复杂情况。 有没有其他方式在特定时间发送通知?

1 个答案:

答案 0 :(得分:0)

我使用服务发送和更新我的通知。在其中,我使用这些代码来构建计时器

final long period = 5000;
        new Timer().schedule(new TimerTask() {
            @Override
            public void run() {
                // do your task here
                getData();
            }
        }, 0, period);

方法getData()检查数据并显示NotificationManager

的通知