Android懸浮通知橫幅顯示無效的問題

Android懸浮通知橫幅顯示無效的問題

最近在做一個需求,就是手機壓後臺,來消息需要懸浮通知橫幅顯示

我們都知道Android 8.0 之後,需要打開權限相關才能展示。
如圖:8.0需要打開
在這裏插入圖片描述
點擊新消息列表
在這裏插入圖片描述
Android5.0之前需要 setTicker發送通知

   Notification.Builder builder = new Notification.Builder(context);
   builder.setTicker("懸浮通知");
   builder.setDefaults(NotificationCompat.DEFAULT_ALL);
   builder.setPriority(Notification.PRIORITY_HIGH);

Android5.0之後使用了setFullScreenIntent

   Notification.Builder builder = new Notification.Builder(context);
   builder.setFullScreenIntent(intent, true);

不知道爲什麼我使用setFullScreenIntent的時候,有些手機彈不出來,一款錘子手機,一款oppo手機
所以建議使用setTicker 測試了 oppo vivo 錘子 華爲 都是OK的。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章