Android——Service

一、服务的定义
服务是Android种实现程序后台运行的解决方案
二、创建一个服务

 public class MyService extends Service
 {
 //需要重写的函数
 onCreate() //创建服务时候调用
 onStartCommand()  //启动服务时调用,
 onDestory()   //服务销毁的时候调用
 public IBinder onBind(Intent intent)  用于和其他组件(活动)通信的时候用
 }

三、开启和停止一个服务
开启和停止一个服务都是在活动中进行的。通过Intent

Intent start=new Intent(this,MyService.class)
startService(start);
Intent stop=new Intent(this,MyService.class)
stopService(stop);

除了在活动中停止服务之外,在服务的任何地方调用stopSelf()都会停止服务。

你可能感兴趣的:(技术,Android服务)