Notification添加点击意图的学习理解

Posted gentspy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Notification添加点击意图的学习理解相关的知识,希望对你有一定的参考价值。

    1.构建PendingIntent

Intent intent=new Intent(context,Activity.class);

PendingIntent pendingIntent=PendingIntent.getActivity(intent);

2.给Notification对象设置ContentIntent.buider().setContentIntent(pendingIntent);

以上是关于Notification添加点击意图的学习理解的主要内容,如果未能解决你的问题,请参考以下文章