Android Service详解及示例代码

 更新时间:2016年08月10日 09:20:52   作者:chino  
本文主要介绍Android Service,在Android应用开发过程中,Service 会经常用到,这里对Service 的概念,生命周期等做了详细介绍,并附示例代码,有需要的朋友可以参考下

Android Service 详细介绍:

1、Service的概念

2、Service的生命周期

3、实例:控制音乐播放的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在绑定对象被销毁后也被销毁了。

 下面把代码分享如下:

1、建立一个新项目名字叫 Lesson14_HelloService,Activity起名叫MainHelloService.java

2、res/layout/main.xml中代码写成

< ?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拷贝进来3、在Activity的同目录新建一个service文件

MusicService.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;

    //其他对象通过bindService方法通知该Service时该方法会被调用
    @Override
    public IBinder onBind(Intent intent) {
        Toast.makeText(this,"MusicService onBind()",Toast.LENGTH_SHORT).show();
        Log.i(tag, "MusicService onBind()");
        mPlayer.start();
        return null;
    }

    //其他对象通过unbindService方法通知该Service时该方法会被调用
    @Override
    public boolean onUnbind(Intent intent){
        Toast.makeText(this, "MusicService onUnbind()", Toast.LENGTH_SHORT).show();
        Log.i(tag, "MusicService onUnbind()");
        mPlayer.stop();
        return false;
    }

    //该服务不存在需要被创建时被调用,不管startService()还是bindService()都会在启动时调用该方法
    @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()");
    }

    //用startService方法调用该服务时,在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()");
    }
}

4、MainHelloService.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";

  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    //输出Toast消息和日志记录
        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所指的对象是个Service
                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");
  }
}

以上就是对Android Service的介绍,后续继续补充相关资料,谢谢大家对本站的支持!

相关文章

  • Android开关控件Switch的使用案例

    Android开关控件Switch的使用案例

    今天小编就为大家分享一篇关于Android开关控件Switch的使用案例,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
    2019-03-03
  • Android中超大图片无法显示的问题解决

    Android中超大图片无法显示的问题解决

    最近在工作中发现一个问题,在做图片浏览的时候发现超大图图片无法显示,无奈只能上网找解决方法,后来通过测试找到了解决的方法,下面这篇文章就主要介绍了Android中超大图无法显示的问题解决方法,需要的朋友可以参考借鉴。
    2017-01-01
  • Android中Retrofit+OkHttp进行HTTP网络编程的使用指南

    Android中Retrofit+OkHttp进行HTTP网络编程的使用指南

    Retrofit和OkHttp都是Square在GitHub上开源的第三方HTTP支持包,两个包可以搭配使用,本文即是来讲解Android中Retrofit+OkHttp进行HTTP网络编程的使用指南:
    2016-07-07
  • Android RxJava创建操作符Timer的方法

    Android RxJava创建操作符Timer的方法

    这篇文章主要为大家详细介绍了Android RxJava创建操作符Timer的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-12-12
  • Android中的dumpsys命令详解

    Android中的dumpsys命令详解

    本文详细讲解了Android中的dumpsys命令,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2022-04-04
  • Android实现双向滑动特效的实例代码

    Android实现双向滑动特效的实例代码

    这篇文章主要介绍了Android实现双向滑动特效的实例代码,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧
    2018-05-05
  • Android App中使用LinearLayout进行居中布局的实例讲解

    Android App中使用LinearLayout进行居中布局的实例讲解

    这篇文章主要介绍了Android App中使用LinearLayout进行居中布局的实例讲解,文中分别介绍了水平居中和垂直居中的相关线性布局,需要的朋友可以参考下
    2016-04-04
  • Android实现自定义dialog的代码

    Android实现自定义dialog的代码

    这篇文章主要介绍了Android实现自定义dialog的实例代码,代码简单易懂,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下
    2018-11-11
  • 一步步实现自定义View之播放暂停控件

    一步步实现自定义View之播放暂停控件

    本文教大家一步步实现自定义View之播放暂停控件,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-06-06
  • android 分辨率适配的方法

    android 分辨率适配的方法

    先和大家分享下,这个方法不能说万能的,但是最起码它解决了分辨率跟密集度的关系,但是也引来一个问题,就是布局会因为图片资源小而失真,本文将详细介绍android 分辨率适配的方法,需要的朋友可以参考下
    2012-11-11

最新评论