Service是四大组件中最重要的组件,在后台运行,不给我们提供UI的界面,某些组件可以绑定到服务上,执行进程间的通信,可以处理网络的数据交互、音乐播放、执行IO操作(这些操作都是来自后台的)。
服务有两种:启动式服务、绑定式服务。启动式服务:被其他的组件(比如service)启动,操作完了,调用某些方法停止。
生命周期:onCreate()-->onStartCommand()-->onDestory()
onStartCommand():当service被启动的时候,使用startService()这个方法开启,使用stopSelf()和stopService()来停止
onCreate():当service第一次被创建的时候执行
onDestory():当系统不再被使用或被销毁
service一旦调用会一直执行,直到自己调用stopSelf()或者其他组件调用stopService()来停止它。
下面我们来看一下启动式Service的生命周期中方法的调用顺序。
整体思路:在xml文件中放入两个Button控件,定义一个MyService类,继承Service,在里面重写onCreate、onStartCommand、onDestroy三个方法,在onStartCommand方法中接收activity传递的字符串,并在三个方法中都输出Log信息,用于显示在执行Service的时候生命周期的方法调用情况。在activity中对两个Button控件定义它的点击事件,分别开启Service并传递字符串变量和关闭Service。注意在清单文件AndroidManifest.xml中注册Service。
activity_main.xml文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="62dp"
android:text="启动服务" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button1"
android:layout_below="@+id/button1"
android:layout_marginTop="44dp"
android:text="停止服务" />
</RelativeLayout>
MyService.java文件:
package com.example.android_service_life;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
public class MyService extends Service {
private final String TAG="MyService";
@Override
public void onCreate() {
// TODO Auto-generated method stub
super.onCreate();
Log.i(TAG, "-->onCreate");
}
// 在onStartCommand方法中连接网络获取数据,关闭service服务
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
// TODO Auto-generated method stub
Log.i(TAG, "-->onStartCommand"+" "+intent.getStringExtra("name"));
return super.onStartCommand(intent, flags, startId);
}
// 这个方法暂时不会执行
@Override
public IBinder onBind(Intent arg0) {
// TODO Auto-generated method stub
return null;
}
// 在onDestroy方法中释放资源
@Override
public void onDestroy() {
// TODO Auto-generated method stub
Log.i(TAG, "-->onDestroy");
super.onDestroy();
}
}
MainActivity.java文件:
package com.example.android_service_life;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity {
private Button start;
private Button stop;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
start=(Button)findViewById(R.id.button1);
stop=(Button)findViewById(R.id.button2);
start.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Intent intent=new Intent(MainActivity.this,MyService.class);
intent.putExtra("name", "jack");
startService(intent);
}
});
stop.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Intent intent=new Intent(MainActivity.this,MyService.class);
stopService(intent);
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}