相关文章推荐
胡子拉碴的地瓜  ·  Unity3D设置窗口可使用最大化按钮_un ...·  1 年前    · 
儒雅的遥控器  ·  FileInputStream和Servle ...·  2 年前    · 
谦和的灌汤包  ·  Spring ...·  2 年前    · 
玉树临风的野马  ·  模型部署入门教程(一):模型部署简介 - 知乎·  2 年前    · 
光明磊落的花生  ·  everything 同时搜索多个文件夹-掘金·  2 年前    · 
Code  ›  Android通知栏前台服务的实现开发者社区
intent android通知栏
https://cloud.tencent.com/developer/article/1723972
飘逸的咖啡豆
2 年前
作者头像
砸漏
0 篇文章

Android通知栏前台服务的实现

前往专栏
腾讯云
开发者社区
文档 意见反馈 控制台
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
发布
首页
学习
活动
专区
工具
TVP 最新优惠活动
返回腾讯云官网
社区首页 > 专栏 > 恩蓝脚本 > Android通知栏前台服务的实现

Android通知栏前台服务的实现

作者头像
砸漏
发布 于 2020-10-20 15:52:51
4.2K 0
发布 于 2020-10-20 15:52:51
举报

一、前台服务的简单介绍

前台服务是那些被认为用户知道且在系统内存不足的时候不允许系统杀死的服务。前台服务必须给状态栏提供一个通知,它被放到正在运行(Ongoing)标题之下——这就意味着通知只有在这个服务被终止或从前台主动移除通知后才能被解除。

最常见的表现形式就是音乐播放服务,应用程序后台运行时,用户可以通过通知栏,知道当前播放内容,并进行暂停、继续、切歌等相关操作。

二、为什么使用前台服务

后台运行的Service系统优先级相对较低,当系统内存不足时,在后台运行的Service就有可能被回收,为了保持后台服务的正常运行及相关操作,可以选择将需要保持运行的Service设置为前台服务,从而使APP长时间处于后台或者关闭(进程未被清理)时,服务能够保持工作。

三、前台服务的详细使用

创建服务内容,如下(四大组件不要忘记清单文件进行注册,否则启动会找不到服务);

public class ForegroundService extends Service {
  private static final String TAG = ForegroundService.class.getSimpleName();
 @Override
  public void onCreate() {
    super.onCreate();
    Log.e(TAG, "onCreate");
  @Nullable
  @Override
  public IBinder onBind(Intent intent) {
    Log.e(TAG, "onBind");
    return null;
  @Override
  public int onStartCommand(Intent intent, int flags, int startId) {
    Log.e(TAG, "onStartCommand");
    return super.onStartCommand(intent, flags, startId);
  @Override
  public void onDestroy() {
    Log.e(TAG, "onDestroy");
    super.onDestroy();
}

创建服务通知内容,例如音乐播放,蓝牙设备正在连接等:

/**
 * 创建服务通知
private Notification createForegroundNotification() {
  NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
  // 唯一的通知通道的id.
  String notificationChannelId = "notification_channel_id_01";
  // Android8.0以上的系统,新建消息通道
  if (Build.VERSION.SDK_INT  = Build.VERSION_CODES.O) {
    //用户可见的通道名称
    String channelName = "Foreground Service Notification";
    //通道的重要程度
    int importance = NotificationManager.IMPORTANCE_HIGH;
    NotificationChannel notificationChannel = new NotificationChannel(notificationChannelId, channelName, importance);
    notificationChannel.setDescription("Channel description");
    //LED灯
    notificationChannel.enableLights(true);
    notificationChannel.setLightColor(Color.RED);
    notificationChannel.setVibrationPattern(new long[]{0, 1000, 500, 1000});
    notificationChannel.enableVibration(true);
    if (notificationManager != null) {
      notificationManager.createNotificationChannel(notificationChannel);
  NotificationCompat.Builder builder = new NotificationCompat.Builder(this, notificationChannelId);
  //通知小图标
  builder.setSmallIcon(R.drawable.ic_launcher);
  //通知标题
  builder.setContentTitle("ContentTitle");
  //通知内容
  builder.setContentText("ContentText");
  //设定通知显示的时间
  builder.setWhen(System.currentTimeMillis());
  //设定启动的内容
  Intent activityIntent = new Intent(this, NotificationActivity.class);
  PendingIntent pendingIntent = PendingIntent.getActivity(this, 1, activityIntent, PendingIntent.FLAG_UPDATE_CURRENT);
  builder.setContentIntent(pendingIntent);
  //创建通知并返回
  return builder.build();
}

启动服务时,创建通知:

@Override
public void onCreate() {
  super.onCreate();
  Log.e(TAG, "onCreate");
  // 获取服务通知
  Notification notification = createForegroundNotification();
  //将服务置于启动状态 ,NOTIFICATION_ID指的是创建的通知的ID
  startForeground(NOTIFICATION_ID, notification);
}

停止服务时,移除通知:

@Override
public void onDestroy() {
  Log.e(TAG, "onDestroy");
  // 标记服务关闭
  ForegroundService.serviceIsLive = false;
  // 移除通知
  stopForeground(true);
  super.onDestroy();
}

判断服务是否启动及获取传递信息:

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
  Log.e(TAG, "onStartCommand");
  // 标记服务启动
  ForegroundService.serviceIsLive = true;
  // 数据获取
  String data = intent.getStringExtra("Foreground");
  Toast.makeText(this, data, Toast.LENGTH_SHORT).show();
  return super.onStartCommand(intent, flags, startId);
}

以上就是前台服务的创建过程,相关注释已经很明白了,具体使用可以查看文末的Demo。

服务创建完毕,接下来就可以进行服务的启动了,启动前不要忘记在清单文件中进行前台服务权限的添加:

<uses-permission android:name="android.permission.FOREGROUND_SERVICE" / 

服务的启动和停止

//启动服务
if (!ForegroundService.serviceIsLive) {
  // Android 8.0使用startForegroundService在前台启动新服务
  mForegroundService = new Intent(this, ForegroundService.class);
  mForegroundService.putExtra("Foreground", "This is a foreground service.");
  if (Build.VERSION.SDK_INT  = Build.VERSION_CODES.O) {
    startForegroundService(mForegroundService);
  } else {
    startService(mForegroundService);
 
推荐文章
胡子拉碴的地瓜  ·  Unity3D设置窗口可使用最大化按钮_unity 打包 不可最大化-CSDN博客
1 年前
儒雅的遥控器  ·  FileInputStream和ServletOutputStream使用时遇到的问题_servletoutputstream转file_Benjieming_Wang的博客-CSDN博客
2 年前
谦和的灌汤包  ·  Spring webflux上传文件中文名字乱码 - 简书
2 年前
玉树临风的野马  ·  模型部署入门教程(一):模型部署简介 - 知乎
2 年前
光明磊落的花生  ·  everything 同时搜索多个文件夹-掘金
2 年前
今天看啥   ·   Py中国   ·   codingpro   ·   小百科   ·   link之家   ·   卧龙AI搜索
删除内容请联系邮箱 2879853325@qq.com
Code - 代码工具平台
© 2024 ~ 沪ICP备11025650号