android使用前台服务和notification实现锁屏通知

1.权限:

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

2.service代码:

import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.Build;
import android.os.IBinder;
import android.util.Log;
import android.view.View;
import android.widget.RemoteViews;

import androidx.annotation.Nullable;
import androidx.core.app.NotificationCompat;

import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;


/**
 * 别忘记询问用户开发锁屏时显示权限
 * <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
 */
public class ChargeService extends Service {
    private int NOTIFICATION_ID=100;
    @Override
    public void onCreate() {
        super.onCreate();
        //startForeground(200,getNotification("xxx","sss","111"));
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        startForeground(NOTIFICATION_ID,getNotification("111"));
        //return START_STICKY;
        return super.onStartCommand(intent, flags, startId);
    }

    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return new Binder();
    }

    @Override
    public void onRebind(Intent intent) {
        super.onRebind(intent);
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        stopForeground(true);
    }

    private NotificationCompat.Builder builder;
    private Notification getNotification(String channel_id) {

        NotificationManager mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        //创建一个跳转到活动页面的意图
        Intent clickIntent = new Intent(this, ChargingActivity.class);
        clickIntent.putExtra("connectorId", ChargingPileManager.INSTANCE.getChargingOrder().getConnectorId());
        clickIntent.putExtra("operatorId", ChargingPileManager.INSTANCE.getChargingOrder().getOperatorId());
        clickIntent.putExtra("qrCode", "3");
        clickIntent.putExtra("shoppingId", ChargingPileManager.INSTANCE.getChargingOrder().getShoppingId());
        clickIntent.putExtra("startChargeSeq", ChargingPileManager.INSTANCE.getChargingOrder().getStartChargeSeq());
        clickIntent.putExtra("chargingStates", ChargingPileManager.INSTANCE.getChargingOrder().getChargeStatus().toString());
        //clickIntent.putExtra("flag", count);
        //创建一个用于页面跳转的延迟意图A
        PendingIntent contentIntent = PendingIntent.getActivity(this, 100, clickIntent
                , PendingIntent.FLAG_UPDATE_CURRENT);
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
//            //Android8.0开始必须给每个通知分配对应的渠道
//            builder = new Notification.Builder(this, channel_id);
            //充电提示和充电进度两个文字串在系统中app通知设置页可以看到  IMPORTANCE_HIGH
            NotificationChannel channel=new NotificationChannel(channel_id,"充电提示",NotificationManager.IMPORTANCE_DEFAULT);
            channel.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC);// 所有情况下显示,包括锁屏
            channel.setDescription("充电进度");
            mNotificationManager.createNotificationChannel(channel);
        }
        //创建一个通知消息的构造器
        builder = new NotificationCompat.Builder(this,channel_id);
        //需要用RemoteViews才能实现自定义通知ui,注意RemoteViews的第二个参数布局根布局不能为ConstraintLayout
        RemoteViews remoteView =new RemoteViews(getPackageName(), R.layout.notify_charge);

        if (ChargingPileManager.INSTANCE.getChargingOrder().getConnectorType()==3){
            remoteView.setViewVisibility(R.id.ll_progress, View.GONE);
        }else {
            remoteView.setViewVisibility(R.id.ll_progress, View.VISIBLE);
        }
        remoteView.setTextViewText(R.id.tv_title, "正在充电中…");
//        remoteView.setTextViewText(R.id.tv_time, "预计充满还需--分钟");
        remoteView.setTextViewText(R.id.tv_percent, ChargingPileManager.INSTANCE.getChargingOrder().getSoc()+"");

        builder
                .setSmallIcon(R.mipmap.lynkco_ic_launcher)//设置状态栏里的小图标
                .setStyle(new NotificationCompat.DecoratedCustomViewStyle())
//                .setCustomBigContentView(remoteView)
                .setCustomContentView(remoteView)
                //.setTicker("提示消息来啦")//设置状态栏里面的提示文本
                //.setWhen(System.currentTimeMillis())//设置推送时间,格式为"小时:分钟"
                .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
                .setContentIntent(contentIntent)//设置内容的点击意图
                .setAutoCancel(true)//设置是否允许自动清除
                .setPriority(NotificationCompat.PRIORITY_DEFAULT)// 设置该通知优先级
                //.setOngoing(true)
//                .setContent(remoteView)
                //.setColor(Color.RED)//没效果
                //.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher))//设置通知栏里面的大图标
                //.setContentTitle(title)//设置通知栏里面的标题文本
//                .setContentText("充电")//设置通知栏里面的内容文本
                ;
        WebSocketClient.getInstance().setScreenLockWebSocketCallback(new ScreenLockWebSocketCallback() {
            @Override
            public void callback(String msg, String msgType, Gson gson) {
                Log.e("cwp","service  msg: "+msg +"   msgType:"+msgType);
                if (msgType.equals(MsgType.P_CHARGE_STATUS.name())){//充电中...
                    WebSocketResult<ChargeStatusBean> result= gson.fromJson(msg,new TypeToken<WebSocketResult<ChargeStatusBean>>() {}.getType());
                    if (result.getData()!=null){
                        //充电未完成时的显示
                        remoteView.setTextViewText(R.id.tv_title, "正在充电中…");
//                        String[] time= Utils.getLengthOfTime(result.getData().getEndTime(),result.getData().getStartTime());
//                        remoteView.setTextViewText(R.id.tv_time, "已充时长"+time[0]+"小时"+time[1]+"分钟");
                        int progress=result.getData().getSoc().intValue();
                        remoteView.setTextViewText(R.id.tv_percent, progress+"");
                    }
                    startForeground(NOTIFICATION_ID,builder.build());
                }
//                else if (msgType.equals(MsgType.P_CHARGE_ORDER_INFO.name())){
//                    stopForeground(true);
//                }
            }

            @Override
            public void fail(int code, String msg) {

            }
        });
        //根据消息构造器创建一个通知对象
//        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
//            Notification notify = builder.build();
//            //mNotificationManager.notify(200, notify);
//            notify.flags = Notification.FLAG_ONGOING_EVENT;
//            return notify;
//        }
        return builder.build();
    }
}


3.注册service

<service android:name=".ChargeService"/>

4.调用

private lateinit var chargeIntent:Intent
findViewById<View>(R.id.tv_start_stake).setOnClickListener {
            chargeIntent=Intent(this, ChargeService::class.java)
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                startForegroundService(chargeIntent)
            } else {
                startService(chargeIntent)
            }
        }
override fun onDestroy() {
        super.onDestroy()
        stopService(chargeIntent)
    }

5.RemoteViews的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="@dimen/dp_86"
    android:orientation="horizontal">
    <!--在小米上自己定义的背景和圆角无效果-->
<!--    android:background="@drawable/bg_222222_round_12"-->
    <RelativeLayout
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="match_parent">
        <ImageView
            android:id="@+id/iv"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop"
            android:src="@mipmap/img_car_charging"/>
        <TextView
            android:id="@+id/tv_percent"
            android:layout_centerVertical="true"
            android:layout_marginStart="@dimen/dp_60"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/white"
            android:textSize="@dimen/sp_18"
            android:text="75%"/>
    </RelativeLayout>

    <RelativeLayout
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:paddingVertical="@dimen/dp_10"
        android:orientation="vertical">
        <TextView
            android:id="@+id/tv_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/black"
            android:textSize="@dimen/sp_16"
            android:text="正在充电中…"/>
        <TextView
            android:id="@+id/tv_time"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:textColor="@color/color_808080"
            android:textSize="@dimen/sp_14"
            android:text="预计充满还需25分钟"/>
    </RelativeLayout>
</LinearLayout>

6.效果图


Screenshot_2022-10-28-10-27-31-617_lockscreen.jpg
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容