首页

源码搜藏网

首页 > 开发教程 > 手机开发 >

Android-Service必须掌握的几点知识

创建时间:2016-07-01 16:59  

请尊重他人劳动成果,请勿随意剽窃,转载请注明,谢谢!转载请注明出处:http://blog.csdn.net/evan_man/article/details/51800263

启动方式

启动Local Service(Client跟Service在同一个进程)

这类服务有个特点,就是它主要用于为某一个客户(Activity)提供单独的后台服务; Context.startService()启动 Context.stopService()结束

启动Remote Service(Client跟Service不在同一个进程)

这类服务有个特点,就是它会定义一些接口并把接口暴露出来,以便其他应用进行操作; 多个客户端可以绑定同一个服务; Context.bindService()方法建立连接,并启动  Context.unbindService()关闭连接

注意:

生命周期

Part1(纯粹的Start)

Part2(纯粹的Bind)

Part3(混合的Start&Bind)


注意:


实现原理

Local Service:(Client和Service在同一个进程中)

Service端: Client端:

Remote Service:(Client和Service不在同一个进程中)(进程间通信毫无疑问使用了Binder)

Service端: Client端:

相关概念的区分(易模糊点)

StartService和bindService启动方法使用场景:

AndroidManifest.xml 里 Service 元素的常见选项

Service&Thread

前台Service和后台Service的区别于实现

后台Service存在被回收的隐患 我们启动的Service一般都是后台运行的Service;因为Service的系统优先级还是比较低的,当系统出现内存不足情况时,就有可能会回收掉正在后台运行的Service; 前台Service避免被回收的隐患 前台Service和普通Service最大的区别就在于,它会一直有一个正在运行的图标在系统的状态栏显示,下拉状态栏后可以看到更加详细的信息,非常类似于通知的效果;这让人想到,小米一个rom开发工程师控诉qq虽然进入了后台,但是在屏幕中展示一个像素点,使得该应用永远处于前台,所以Service永远不会被清除掉!! 创建一个前台Service(以下操作都是在Service里面进行的)
  1. 创建一个Notification
    • CharSequence text = getText(R.string.remote_service_started);
      PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, Controller.class), 0); //指定点击该Notification的时候,应该跳转到的Activity
      Notification notification = new Notification.Builder(this)
                      .setSmallIcon(R.drawable.stat_sample)  // the status icon
                      .setTicker(text)  // the status text
                      .setWhen(System.currentTimeMillis())  // the time stamp
                      .setContentTitle(getText(R.string.local_service_label))  // the label of the entry
                      .setContentText(text)  // the contents of the entry
                      .setContentIntent(contentIntent)  // The intent to send when the entry is clicked
                      .build();
  2. 让Service变成一个前台Service,并会将通知显示出来
    • startForeground(R.string.remote_service_started, notification);   //等价于NotificationManager.notify(int, Notification)
  3. 让Service变成一个后台Service,并会将通知从通知栏撤销

远程Service和本地Service的优劣比较

ANR问题 ANR问题,本地Service会运行本进程的主线程即UI线程中,因此运行耗时程序,触发ANR;如果是远程Service则阻塞的是另外一个进程的主线程,对当前进程无影响,因此不会触发ANR; 远程Service比本地Service要好? 其实远程Service实现起来比本地Service要复杂一点,大体流程如下,具体实现代码参考: 本地service: 远程Service:

Client和Service之间通信方式的概述:















 
0
0
   
上一篇:alloc、init 详解
下一篇:Android 将ec项目导入Android Studio

相关内容

热门推荐