Android回顾--(二十二) Service的初涉和Notification通知

Service服务

  Android四大金刚之一,不依赖与UI和组件,可以独立的运行在后台。

Service的使用:

一、startService
  1. 创建一个类继承于Service
  2. 重写Service里面的onStart或者onStartCommand,已经onCreate、onBind、onDestory方法
public class MyService extends Service {
    public MyService() {
    }

    @Override
    public void onCreate() {
        super.onCreate();
    }

    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        throw new UnsupportedOperationException("Not yet implemented");
    }

    /**
     * 处理业务逻辑的地方
     * @param intent
     * @param flags
     * @param startId
     * @return
     */
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        return super.onStartCommand(intent, flags, startId);
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
    }
}
  1. 使用startService打开服务
        Intent intent = new Intent(MainActivity.this, MyService.class);
        startService(intent);
  1. 需要在mainifest中声明
        <service android:name=".MyService"/>
  1. 关闭Service
stopService(intent)

Service的优先级:Service的优先级比不可见的Activity的优先级高,比可见的Activity优先级底。

二、BindService

  绑定模式下的Service会依赖于组件,非绑定模式下的Service不依赖于组件。

  1. 编写一个类继承于Service
public class MyBinderStartService extends Service{
    Binder binder=new MyBinder();
    public int number=0;
    public boolean isLooping=true;
  1. 在Service里面编写一个类继承于Binder
  2. 在Binder类里面编写一个方法返回当前这个Service的实例:Service.this
public class MyBinder extends Binder{
    public MyBinderStartService getService(){
        return MyBinderStartService.this;
    }
}
  1. 在Service的onBind方法里面返回自定义的这个类的实例
@Override
public IBinder onBind(Intent intent) {
    Log.e("---------------------","onBind");
    return binder;
}
  1. 定义业务逻辑的方法
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    Log.e("---------------------","onStartCommand");
    new Thread(new Runnable() {
        @Override
        public void run() {
            while (isLooping){
                try {
                    Thread.sleep(500);
                    Log.e("----------------------",(number++)+"");
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
    }).start();
    return 0;
}
  1. 在需要使用这个Service的组件中来进行调用
    • 首先需要准备Intent
      Intent mIntent=new Intent(MainActivity.this, MyBinderStartService.class);
    • 编写一个类实现于ServiceConnection这个类并且实现里面的onServiceConnected和onDisServiceConnected
    • 调用BindService(intent,MyServiceConn,flag)
/**
 * 连接那个Service
 */
private class MyServiceConn implements ServiceConnection{
    @Override
    public void onServiceConnected(ComponentName name, IBinder binder) {
        MyBinderStartService.MyBinder myBinder=(MyBinderStartService.MyBinder)binder;
        myBinderStartService = myBinder.getService();
        Log.e("---------------","绑定成功........");
    }

    /**
     * 绑定零食出现问题或者  被系统杀死才会调用这个方法
     * @param name
     */
    @Override
    public void onServiceDisconnected(ComponentName name) {
       Log.e("----------------","我被杀死...............");
    }
}

绑定Service

bindService(mIntent,myServiceConn,BIND_AUTO_CREATE);
  1. 在需要调用事件的地方调用Service方法。

注意:BindService这个方法是异步的,如果在绑定的同时立马执行调用方法,不会成功,BindService的stop方法是没用的,当解除绑定时会调用onDestroy方法,Service就死了。

三、IntentService

  也是一个Service,在IntentService里面封装了异步任务(不需要new线程),在运行完所有任务之后会自动终止Service的运行。

IntentService的使用:

  1. 自定义一个类继承于IntentService,并重写构造函数
public class MyIntentSevice extends IntentService {

    public MyIntentSevice() {
        super("小子");
    }
  1. 重写里面的onHandleIntent方法
    onHandleIntent:系统new好的异步任务的回调,可以完成耗时操作。
 /**
     * 必须重写这个方法:系统给你new好的异步任务的回调
     * 这个里面可以完成那个耗时的操作
     * @param intent
     */
    @Override
    protected void onHandleIntent(Intent intent) {
        try {
            Thread.sleep(5000);  //用睡眠来模拟那个耗时的操作
            Log.e("------------------",Thread.currentThread().getName());
            Log.e("---------------","我执行完成了.....");
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
  1. 在mainifest中声明
  2. 在Activity中打开服务
        Intent intent = new Intent(MainActivity.this, MyBindService.class);
        startService(intent);

Notification通知

  1. 通过NotificationManger获取管理者对象
        NotificationManager mNotificationManager=null;
        //第一步:通过NotificationManager获取那个管理者对象
        mNotificationManager= (android.app.NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
  1. 使用Notification的Builder获取一个builder对象
Notification.Builder builder = new Notification.Builder(IntentServiceActivity.this);
  1. 通过Builder对象设置相应的值
        //通过builder对象设置相应的值
        mBuilder.setContentTitle("天气预报");   //设置标题
        mBuilder.setContentText("城市的天气预报正在掌握中...");  //设置那个提示的内容
        mBuilder.setSmallIcon(R.mipmap.ic_launcher);    //设置前面的那个图标
        mBuilder.setAutoCancel(true);   //点击了那个通知之后那个通知是要消失的
  1. 显示通知

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

推荐阅读更多精彩内容