Android四大组件之Service
Posted 小陈乱敲代码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android四大组件之Service相关的知识,希望对你有一定的参考价值。
android基础知识梳理-四大组件之Service
定义
Service
是一种可在后台执行长时间运行操作而不提供界面的应用组件。服务可由其他应用组件启动,而且即使用户切换到其他应用,服务仍将在后台继续运行。此外,组件可通过绑定到服务与之进行交互,甚至是执行进程间通信 (IPC)。例如,服务可在后台处理网络事务、播放音乐,执行文件 I/O 或与内容提供程序进行交互。
服务类型
-
前台服务
前台服务必须显示通知,一般用于执行一些需要用户注意的操作。例如音频播放器使用前台服务来播放音乐。
-
后台服务
后台服务用于执行用户不会直接注意的操作。通过startService()启动
-
绑定服务
绑定服务会提供客户端-服务器接口,以便组件与服务进行交互、发送请求、接收结果,甚至是利用进程间通信 (IPC) 跨进程执行这些操作。仅当与另一个应用组件绑定时,绑定服务才会运行。多个组件可同时绑定到该服务,但全部取消绑定后,该服务即会被销毁。
创建Service
1.全局配置文件声明
<manifest ... >
...
<application ... >
<service android:name=".ExampleService"
android:exported="false"/>
...
</application>
</manifest>
添加\\<service>
标签并使用android:name
指定service实现类,android:exported
置为false可以确保当前service只被当前应用使用,如果其他应用也要使用到此service,则应该置为true。
2.代码实现
public class ExampleService extends Service
public ExampleService()
@Override
public int onStartCommand(Intent intent, int flags, int startId)
return START_STICKY;
@Override
public IBinder onBind(Intent intent)
// TODO: Return the communication channel to the service.
throw new UnsupportedOperationException("Not yet implemented");
onStartCommand()
:每次调用startService()
接口启动服务时,都会触发服务的该回调方法onBind()
:定义与客户端交互的接口并返回用于通信的IBinder
实例,可以通过扩展 Binder 类、使用 Messenger、使用 AIDL三种方式定义
运行Service
1.启动服务
// 启动服务
private void startLocalService()
Intent intent = new Intent(this, ExampleService.class);
startService(intent);
// 停止服务
private void stopLocalService()
Intent intent = new Intent(this, ExampleService.class);
stopService(intent);
2.前台服务
定义notification,运行前台服务
Intent notificationIntent = new Intent(this, ExampleActivity.class);
PendingIntent pendingIntent =
PendingIntent.getActivity(this, 0, notificationIntent, 0);
Notification notification =
new Notification.Builder(this, CHANNEL_DEFAULT_IMPORTANCE)
.setContentTitle(getText(R.string.notification_title))
.setContentText(getText(R.string.notification_message))
.setSmallIcon(R.drawable.icon)
.setContentIntent(pendingIntent)
.setTicker(getText(R.string.ticker_text))
.build();
startForeground(ONGOING_NOTIFICATION_ID, notification);
3.绑定服务
绑定服务需要使用ServiceConnection
来监听服务的连接状态,并在连接成功的回调方法onServiceConnected()
中获取到可以用以与服务通信的Binder
实例
// 监听服务绑定状态
private ServiceConnection serviceConnection = new ServiceConnection()
@Override
public void onServiceConnected(ComponentName name, IBinder service)
@Override
public void onServiceDisconnected(ComponentName name)
;
// 绑定服务
private void bindLocalService()
Intent intent = new Intent(this, ExampleService.class);
bindService(intent, serviceConnection, Context.BIND_AUTO_CREATE);
// 解绑服务
private void unbindLocalService()
unbindService(serviceConnection);
生命周期
对于不同的服务启动方式,服务的生命周期也有所不同。如上图,左边时通过startService()
启动服务的生命周期,右边时通过bindService()
启动服务的生命周期。
如果是bindService()
方式启动服务,当onUnbind()
返回true,客户端再次bindService()
时会触发到onRebind()
回调
-
onCreate()
首次创建服务时,会调用该方法,如果服务已在运行,则不会被调用,该方法在服务的整个生命周期中只会被调用一次。
-
onStartCommand()
当另一个组件通过
startService()
方法启动服务时,会调用到该方法 -
onBind()
当另一个组件通过
bindService()
方法绑定服务时,会调用到该方法 -
onUnbind()
当另一个组件通过unbindSevice()方法解绑服务时,会调用到该方法
-
onRebind()
当旧的组件已与服务解绑后,新的组件绑定服务时,如果
onUnbind()
返回true,则会调用该方法 -
onDestory()
当绑定服务的所有组件均已解绑或者服务停止时,会调用到该方法
最后
如果大伙有什么好的学习方法或建议欢迎大家在评论中积极留言哈,希望大家能够共同学习、共同努力、共同进步。
小编在这里祝小伙伴们在未来的日子里都可以 升职加薪,当上总经理,出任CEO,迎娶白富美,走上人生巅峰!!
不论遇到什么困难,都不应该成为我们放弃的理由!
很多人在刚接触这个行业的时候或者是在遇到瓶颈期的时候,总会遇到一些问题,比如学了一段时间感觉没有方向感,不知道该从那里入手去学习,需要一份小编整理出来的学习资料的关注我主页或者点击扫描下方二维码免费领取~
以上是关于Android四大组件之Service的主要内容,如果未能解决你的问题,请参考以下文章
android 四大组件之ServiceIntentService