详解Android开发中服务应用组件的操作

来源:爱站网时间:2020-11-17编辑:网友分享
Service是Android系统中的应用组件,其实它与活动水平相似,但它没有图形界面,不能自己运行,只能在后台运行操作,下面是爱站技术频道小编介绍的详解Android开发中服务应用组件的操作,希望对大家有帮助。

Service是Android系统中的应用组件,其实它与活动水平相似,但它没有图形界面,不能自己运行,只能在后台运行操作,下面是爱站技术频道小编介绍的详解Android开发中服务应用组件的操作,希望对大家有帮助。

Service是什么
Service是一个android 系统中的应用程序组件,它跟Activity的级别差不多,但是他没有图形化界面,不能自己运行,只能后台运行,并且可以和其他组件进行交互如更新ContentProvider,Intent以及系统的通知等等。其启动方式有两种:context.startService() 和 context.bindService()。Service通常用来处理一些耗时比较长的操作。

Service的编写
创建一个类(这里为FirstService)继承android.app.Service,并覆盖以下方法:
onBind(Intent intent) Return the communication channel to the service.
onCreate() Called by the system when the service is first created.
onStartCommand(Intent intent, int flags, int startId) Called by the system every time a client explicitly starts the service by calling startService(Intent), providing the arguments it supplied and a unique integer token representing the start request.
onDestroy() Called by the system to notify a Service that it is no longer used and is being removed.

AndroidManifest.xml文件中添加service配置
在Activity中启动和停止Service的点击事件的编写


class StartServiceListener implements OnClickListener {
@Override
public void onClick(View v) {
Intent intent = new Intent();
intent.setClass(TestActivity.this, FirstService.class);
startService(intent);
}
}
class StopServiceListener implements OnClickListener {
@Override
public void onClick(View v) {
Intent intent = new Intent();
intent.setClass(TestActivity.this, FirstService.class);
stopService(intent);
}
}

 关于详解Android开发中服务应用组件的操作爱站技术频道小编就说到这里了,认真看完这篇文章的朋友都知道它的重要了,通过在js.aizhan.com让大家受益匪浅。

上一篇:简述Android开发之多线程技术

下一篇:安卓开发中如何利用viewpager实现左右循环滑动

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载