android点通知进入app界面

This commit is contained in:
EasyChen 2022-01-21 21:17:22 +08:00
parent b33f098087
commit 8e4ba1f27e
1 changed files with 3 additions and 1 deletions

View File

@ -80,7 +80,9 @@ function android_send($is_clip, $device_token, $text, $desp = '', $dev = true)
$message1->passThrough(0); // 这是一条通知栏消息如果需要透传把这个参数设置成1,同时去掉title和descption两个参数
// $message1->payload($payload); // 携带的数据点击后将会通过客户端的receiver中的onReceiveMessage方法传入。
$message1->extra(Builder::notifyForeground, 1); // 应用在前台是否展示通知如果不希望应用在前台时候弹出通知则设置这个参数为0
$message1->notifyId(2); // 通知类型。同样的类型的通知会互相覆盖,不同类型可以在通知栏并存
$message1->extra(Builder::notifyEffect, 1);
$message1->notifyType(4);
$message1->notifyId(rand(1, 100)); // 通知类型。同样的类型的通知会互相覆盖,不同类型可以在通知栏并存
$message1->build();
$sender = android_sender();