Android的Service应用程序组件基本编写方法

安静__骚动

安静__骚动

2016-02-19 11:19

给自己一点时间接受自己,爱自己,趁着下午茶的时间来学习图老师推荐的Android的Service应用程序组件基本编写方法,过去的都会过去,迎接崭新的开始,释放更美好的自己。
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配置
代码如下:

service android:name=".FirstService"/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);
}
}
展开更多 50%)
分享

猜你喜欢

Android的Service应用程序组件基本编写方法

编程语言 网络编程
Android的Service应用程序组件基本编写方法

编写高级应用程序

编程语言 网络编程
编写高级应用程序

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

编写多文档应用程序

C语言教程 C语言函数
编写多文档应用程序

Android Service(不和用户交互应用组件)案例分析

编程语言 网络编程
Android Service(不和用户交互应用组件)案例分析

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

用VB编写WindowsCGI应用程序

编程语言 网络编程
用VB编写WindowsCGI应用程序

用VC++建立Service服务应用程序

编程语言 网络编程
用VC++建立Service服务应用程序

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

html5 拖拽上传图片实例演示

html5 拖拽上传图片实例演示

Win7系统开机后右下角的PC问题提示关闭方法

Win7系统开机后右下角的PC问题提示关闭方法
下拉加载更多内容 ↓