当前位置:   article > 正文

【后台弹窗】应用跳转直通车--通知栏通知跳转后台应用_安卓 华为手机跳转应用通知

安卓 华为手机跳转应用通知

【关键字】

鸿蒙、弹窗、通知栏、后台应用

【问题描述】

近期华为手机更新为HarmonyOS后发现应用在后台时,通知栏推送消息无法跳转应用界面。

参考开发者联盟中的以下文档【FAQ】【弹窗问题】关于后台弹窗问题-华为开发者论坛 | 华为开发者联盟 (huawei.com)

原因是华为新增了后台弹窗权限,根据提供的Android官网文档连接需要修改通知为显示通知,以下把个人的踩坑过程提供给各位参考。

【原因与实现步骤】

参考Android官网文档连接需要修改通知为显示通知,并使用了全屏Intent但是发现并没有生效,仍然无法跳转到后台Activity中。注意到官网代码中有以下注释:

  1. // Use a full-screen intent only for the highest-priority alerts where you
  2. // have an associated activity that you would like to launch after the user
  3. // interacts with the notification. Also, if your app targets Android 10
  4. // or higher, you need to request the USE_FULL_SCREEN_INTENT permission in
  5. // order for the platform to invoke this notification

不生效的原因是必须要在Manifest中添加USE_FULL_SCREEN_INTENT权限,这个权限是普通权限并不需要申请使用。

因此具体的修改流程如下:

第一步:

在AndroidManifest.xml中增加USE_FULL_SCREEN_INTENT权限:

<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT"/>

第二步:

参考官网创建全屏Intent通知,最后使用NotificationManager进行通知即可

  1. Intent fullScreenIntent = new Intent(this, CallActivity.class);
  2. PendingIntent fullScreenPendingIntent = PendingIntent.getActivity(this, 0,
  3. fullScreenIntent, PendingIntent.FLAG_UPDATE_CURRENT);
  4. NotificationCompat.Builder notificationBuilder =
  5. new NotificationCompat.Builder(this, CHANNEL_ID)
  6. .setSmallIcon(R.drawable.notification_icon)
  7. .setContentTitle("Incoming call")
  8. .setContentText("(919) 555-1234")
  9. .setPriority(NotificationCompat.PRIORITY_HIGH)
  10. .setCategory(NotificationCompat.CATEGORY_CALL)
  11. // Use a full-screen intent only for the highest-priority alerts where you
  12. // have an associated activity that you would like to launch after the user
  13. // interacts with the notification. Also, if your app targets Android 10
  14. // or higher, you need to request the USE_FULL_SCREEN_INTENT permission in
  15. // order for the platform to invoke this notification.
  16. .setFullScreenIntent(fullScreenPendingIntent, true);
  17. Notification incomingCallNotification = notificationBuilder.build();
  18. NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  19. notificationManager.notify(100, incomingCallNotification);

 欲了解更多更全技术文章,欢迎访问https://developer.huawei.com/consumer/cn/forum/?ha_source=zzh 

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号