上一节讲到了Gallery画廊,本节主要讲解Android组件Service,主要内容包括:Service的概念、生命周期及其应用实例。
一、Service简介
Service是Android程序中四大基础组件之一,它和Activity一样都是Context的子类,只不过它没有UI界面,是在后台运行的组件。
二、Service的生命周期
Service对象不能自己启动,需要通过某个Activity、Service或者其他Context对象来启动。启动的方法有两种,Context.startService和Context.bindService()。两种方式的生命周期是不同的,具体如下所示。
Context.startService方式的生命周期:
启动时,startService –> onCreate() –> onStart()
停止时,stopService –> onDestroy()
Context.bindService方式的生命周期:
绑定时,bindService -> onCreate() –> onBind()
解绑定时,unbindService –>onUnbind() –> onDestory()
三、Service应用实例:控制音乐播放的Service
下面我们用一个可以控制在后台播放音乐的例子来演示刚才所学知识,同学们可以通过该例子可以明显看到通过绑定方式运行的Service在绑定对象被销毁后也被销毁了。
下面是编写该实例的步骤:
1、建立一个新项目名字叫Lesson14_HelloService,Activity起名叫MainHelloService.java。
2、res/layout/main.xml中代码如下:
XML/HTML代码
- < ?xml version="1.0" encoding="utf-8"?>
- <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
- <textview android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="音乐播放服务" android:textsize="25sp" android:layout_margintop="10dp">
- <button android:text="开启音乐播放服务" android:textsize="20sp" android:id="@+id/Button01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margintop="10dp">
- </button>
- <button android:text="停止音乐播放服务" android:textsize="20sp" android:id="@+id/Button02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margintop="10dp">
- </button>
-
- <button android:text="绑定音乐播放服务" android:textsize="20sp" android:id="@+id/Button03" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margintop="10dp">
- </button>
- <button android:text="解绑定音乐播放服务" android:textsize="20sp" android:id="@+id/Button04" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margintop="10dp">
- </button>
- </textview></linearlayout>
3、在res目录中建立一个raw目录,并把一个音乐文件babayetu.mp3拷贝进来。
4、在Activity的同目录新建一个service文件MusicService.java。
Java代码
- package android.basic.lesson14;
-
- import android.app.Service;
- import android.content.Intent;
- import android.media.MediaPlayer;
- import android.os.IBinder;
- import android.util.Log;
- import android.widget.Toast;
-
- public class MusicService extends Service {
-
-
- String tag ="MusicService";
-
-
- MediaPlayer mPlayer;
-
-
- @Override
- public IBinder onBind(Intent intent) {
- Toast.makeText(this,"MusicService onBind()",Toast.LENGTH_SHORT).show();
- Log.i(tag, "MusicService onBind()");
- mPlayer.start();
- return null;
- }
-
-
- @Override
- public boolean onUnbind(Intent intent){
- Toast.makeText(this, "MusicService onUnbind()", Toast.LENGTH_SHORT).show();
- Log.i(tag, "MusicService onUnbind()");
- mPlayer.stop();
- return false;
- }
-
-
- @Override
- public void onCreate(){
- Toast.makeText(this, "MusicService onCreate()", Toast.LENGTH_SHORT).show();
-
- mPlayer=MediaPlayer.create(getApplicationContext(), R.raw.babayetu);
-
- mPlayer.setLooping(true);
- Log.i(tag, "MusicService onCreate()");
- }
-
-
- @Override
- public void onStart(Intent intent,int startid){
- Toast.makeText(this,"MusicService onStart",Toast.LENGTH_SHORT).show();
- Log.i(tag, "MusicService onStart()");
- mPlayer.start();
- }
-
-
- @Override
- public void onDestroy(){
- Toast.makeText(this, "MusicService onDestroy()", Toast.LENGTH_SHORT).show();
- mPlayer.stop();
- Log.i(tag, "MusicService onDestroy()");
- }
- }
5、MainHelloService.java中的代码:
Java代码
- package android.basic.lesson14;
-
- import android.app.Activity;
- import android.content.ComponentName;
- import android.content.Context;
- import android.content.Intent;
- import android.content.ServiceConnection;
- import android.os.Bundle;
- import android.os.IBinder;
- import android.util.Log;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.widget.Button;
- import android.widget.Toast;
-
- public class MainHelloService extends Activity {
-
-
- String tag = "MusicService";
-
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
-
-
- Toast.makeText(MainHelloService.this, "MainHelloService onCreate", Toast.LENGTH_SHORT).show();
- Log.i(tag, "MainHelloService onCreate");
-
-
- Button b1= (Button)findViewById(R.id.Button01);
- Button b2= (Button)findViewById(R.id.Button02);
- Button b3= (Button)findViewById(R.id.Button03);
- Button b4= (Button)findViewById(R.id.Button04);
-
-
- final ServiceConnection conn = new ServiceConnection(){
-
- @Override
- public void onServiceConnected(ComponentName name, IBinder service) {
- Toast.makeText(MainHelloService.this, "ServiceConnection onServiceConnected", Toast.LENGTH_SHORT).show();
- Log.i(tag, "ServiceConnection onServiceConnected");
-
- }
-
- @Override
- public void onServiceDisconnected(ComponentName name) {
- Toast.makeText(MainHelloService.this, "ServiceConnection onServiceDisconnected", Toast.LENGTH_SHORT).show();
- Log.i(tag, "ServiceConnection onServiceDisconnected");
-
- }};
-
-
- OnClickListener ocl= new OnClickListener(){
-
- @Override
- public void onClick(View v) {
-
- Intent intent = new Intent(MainHelloService.this,android.basic.lesson14.MusicService.class);
- switch(v.getId()){
- case R.id.Button01:
-
- startService(intent);
- break;
- case R.id.Button02:
-
- stopService(intent);
- break;
- case R.id.Button03:
-
- bindService(intent,conn,Context.BIND_AUTO_CREATE);
- break;
- case R.id.Button04:
-
- unbindService(conn);
- break;
- }
- }
- };
-
-
- b1.setOnClickListener(ocl);
- b2.setOnClickListener(ocl);
- b3.setOnClickListener(ocl);
- b4.setOnClickListener(ocl);
-
- }
-
- @Override
- public void onDestroy(){
- super.onDestroy();
- Toast.makeText(MainHelloService.this, "MainHelloService onDestroy", Toast.LENGTH_SHORT).show();
- Log.i(tag, "MainHelloService onDestroy");
- }
- }
了解了Service的概念、生命周期,又跟着做了一个实例,相信大家现在对Service的使用已经有了一个基本的掌握了。