Android中new Notification创建实例的最佳方法
程序员文章站
2024-03-06 16:52:20
目前 android 已经不推荐使用下列方式创建 notification实例:
notification notification = new notifi...
目前 android 已经不推荐使用下列方式创建 notification实例:
notification notification = new notification(r.drawable.ic_launcher,"this is ticker text",system.currenttimemillis());
最好采用下列方式:
notification notification = new notification.builder(this) .setcontenttitle("this is title") .setcontenttext("this is content") .setsmallicon(r.drawable.ic_launcher) .setticker("this is ticker") .setcontentintent(pi) .build();
以上所述是小编给大家介绍的android中new notification创建实例的最佳方法,希望对大家有所帮助
上一篇: java之swing单选框用法实例分析
下一篇: 五种Java多线程同步的方法
推荐阅读
-
Android中new Notification创建实例的最佳方法
-
Android开发中Activity创建跳转及传值的方法
-
实例探究Android开发中Fragment状态的保存与恢复方法
-
实例讲解Android中的View类以及自定义View控件的方法
-
实例讲解Android中ContentProvider组件的使用方法
-
Android开发中Activity创建跳转及传值的方法
-
实例讲解Android应用中自定义组合控件的方法
-
Android Material设计中列表和卡片的创建方法解析
-
实例探究Android开发中Fragment状态的保存与恢复方法
-
实例讲解Android中ContentProvider组件的使用方法