博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
前台服务(在通知栏显示服务)
阅读量:5985 次
发布时间:2019-06-20

本文共 847 字,大约阅读时间需要 2 分钟。

关键代码:

public class MyService extends Service {    @Nullable    @Override    public IBinder onBind(Intent intent) {        return null;    }    @Override    public void onCreate() {        Intent notifyIntent = new Intent(this, MainActivity.class);        PendingIntent pendingIntent = PendingIntent.getActivity(this,                0, notifyIntent,0);        Notification notification = new Notification.Builder(this).                setSmallIcon(R.mipmap.ic_launcher).                setContentTitle("通知").                setContentText("我是服务的通知").                setContentIntent(pendingIntent).                setDefaults(Notification.DEFAULT_ALL). // 设置用手机默认的震动或声音来提示                build();        // 设置为前台服务,在系统状态栏显示        startForeground(1, notification);        super.onCreate();    }}

 

转载于:https://www.cnblogs.com/itfenqing/p/6753176.html

你可能感兴趣的文章
面向对象的JavaScript之继承(二) 构造函数继承
查看>>
用code打造自己的过渡动画
查看>>
火掌柜iOS端基于CocoaPods的组件二进制化实践
查看>>
Jenkins集成Docker镜像实现自动发布
查看>>
Java MVC 1.0规范开始进入公开评审阶段
查看>>
(翻译) MongoDB(14) 在 Debian 上安装MongoDB社区版
查看>>
MAT(java 内存分析工具简单使用)
查看>>
Git如何检出指定目录或文件
查看>>
WeX5中input拍照上传图片方法分享,可单图与多图
查看>>
android servicemanager与binder源码分析二 ------ servicemanager服务提供者
查看>>
React Router中NamedComponent与Params使用
查看>>
href的那些事
查看>>
RecyclerView中Adapter和ViewHolder的封装
查看>>
xcache 源码包编译安装
查看>>
前端开发思考与实践
查看>>
tcp/ip参数控制
查看>>
[分享]iOS开发-UIView顺时针旋转、逆时针旋转
查看>>
防止 DDoS 攻击的五个「大招」!
查看>>
epoll LT/ET 深入剖析
查看>>
如何使用Android UI Fragment开发“列表-详情”界面
查看>>