【发布时间】:2020-04-02 05:18:02
【问题描述】:
我需要 Android 通知的代码以及收到通知的时间。
我正在使用以下代码在我的应用中测试通知
public void onPageFinished(WebView view, String url) {
Log.d("App Loaded ==", "Do");
NotificationManager notif=(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
Notification notify=new Notification.Builder
(getApplicationContext()).setContentTitle("testing").setContentText("This is testing").
setContentTitle("time notification").setSmallIcon(R.drawable.ic_notification).build();
notify.flags |= Notification.FLAG_AUTO_CANCEL;
notif.notify(0, notify);
}
请提出为什么这不适用于页面完成事件。未触发任何通知。
【问题讨论】:
-
您在哪个 Android 版本上进行测试?从奥利奥开始,您需要为您的
Notifications 提供频道。