美文网首页
2020-06-16

2020-06-16

作者: FanYeah | 来源:发表于2020-06-16 11:54 被阅读0次

Android Q特性之后台启动Activity限制

    从Android Q版本开始,google为了让用户有更好的使用体验,限制后台App启动Activity,以防止打扰当前用户操作。

    对于即时通讯、需要用户马上应答等场景,如视频、音频Call,google给出的建议是使用Full Screen Intent Notification。代码如下:

String title ="Title";

String content ="Content";

Intent fullScreenIntent =new Intent(this, MainActivity.class);

fullScreenIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

fullScreenIntent.putExtra("action", "action");

PendingIntent fullScreenPendingIntent = PendingIntent.getActivity(this, 0, fullScreenIntent, PendingIntent.FLAG_UPDATE_CURRENT);

NotificationCompat.Builder notificationBuilder =

new NotificationCompat.Builder(this, id)

.setSmallIcon(R.mipmap.ic_launcher)

.setContentTitle(title)

.setTicker(content)

.setContentText(content)

.setAutoCancel(true)

.setDefaults(Notification.DEFAULT_ALL)

.setPriority(NotificationCompat.PRIORITY_MAX)

.setCategory(Notification.CATEGORY_CALL)

.setFullScreenIntent(fullScreenPendingIntent, true);

notificationBuilder.build();

google官方文档参考链接:https://developer.android.google.cn/guide/components/activities/background-starts

相关文章

  • 2020-06-18

    2020-06-16 2020-06-15 2020-06-14 2020-06-12 2020-06-10 ‘夫...

  • 2020-06-19

    2020-06-18 2020-06-16 2020-06-15 2020-06-14 2020-06-12 20...

  • 2020-06-22

    2020-06-21 2020-06-20 2020-06-19 2020-06-18 2020-06-16 20...

  • 2020-06-20

    2020-06-19 2020-06-18 2020-06-16 2020-06-15 2020-06-14 20...

  • 2020-06-21

    2020-06-20 2020-06-19 2020-06-18 2020-06-16 2020-06-15 20...

  • 重装VMware后断网

    2020-06-16 重装VMware后外网不能正常连接虚拟机 2020-06-17 最终的原因还是:Window...

  • 日拱一卒,持续精进

    【姓名】老盖 【时间】2020-06-16 【今日全情工作】 半日工作也快乐! 【今日认真生活】 接送90分钟...

  • MySQL 常用命令

    记录时间:2020-06-16命令环境为wsl 即 win系统中Ubuntu子系统,命令在Linux服务器上也生效...

  • 【D175】爱自己是根本——写作营共读打卡第142天《非暴力沟通

    2020-06-16,周二,晴 今天阅读《非暴力沟通》第九章。 Day142《爱自己是根本》 ——写作营第142天...

  • [R] 遇到的安装问题

    安装包 2020-06-16 在测试maftools的时候,发现使用的版本太旧了,记录一下新版本的安装方法以及遇到...

网友评论

      本文标题:2020-06-16

      本文链接:https://www.haomeiwen.com/subject/egplxktx.html