Android开发中,当需要创建在后台运行的程序的时候,就要使用到Service。Service 可以分为有无限生命和有限生命两种。

特别需要注意的是Service跟Activities是不同的(简单来说可以理解为后台与前台的区别),例如,如果需要使用Service的话,需要调用startService(),从而利用startService()去调用Service中的OnCreate()和onStart()方法来启动一个后台的Service。

 

启动一个Service的过程如下:

context.startService()  ->onCreate()- >onStart()->Service running

其中onCreate()可以进行一些服务的初始化工作,onStart()则启动服务。

 

停止一个Service的过程如下:

context.stopService() | ->onDestroy() ->Service stop

 

 

接下来的实例是一个利用后台服务播放音乐的小例子,点击start运行服务,点击stop停止服务。

 

程序运行界面:

 

代码:

定义服务,MyService.java

 

package com.example;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 MyService extends Service {private static final String TAG = "MyService";MediaPlayer player;@Overridepublic IBinder onBind(Intent intent) {return null;}@Overridepublic void onCreate() {Toast.makeText(this, "My Service Created", Toast.LENGTH_LONG).show();Log.d(TAG, "onCreate");player = MediaPlayer.create(this, R.raw.braincandy);//运行例子是,需要替换音乐的名称player.setLooping(false); // Set looping}@Overridepublic void onDestroy() {Toast.makeText(this, "My Service Stopped", Toast.LENGTH_LONG).show();Log.d(TAG, "onDestroy");player.stop();}@Overridepublic void onStart(Intent intent, int startid) {Toast.makeText(this, "My Service Started", Toast.LENGTH_LONG).show();Log.d(TAG, "onStart");player.start();}}

 

除此之外还要在Manifest里面声明服务:

 

<?xml version="1.0" encoding="utf-8"?>                                               
 

 定义Activity,ServicesDemo.java

 

package com.example;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.util.Log;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;public class ServicesDemo extends Activity implements OnClickListener {  private static final String TAG = "ServicesDemo";  Button buttonStart, buttonStop;  @Override  public void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.main);    buttonStart = (Button) findViewById(R.id.buttonStart);    buttonStop = (Button) findViewById(R.id.buttonStop);    buttonStart.setOnClickListener(this);    buttonStop.setOnClickListener(this);  }  public void onClick(View src) {    switch (src.getId()) {    case R.id.buttonStart:      Log.d(TAG, "onClick: starting srvice");      startService(new Intent(this, MyService.class));      break;    case R.id.buttonStop:      Log.d(TAG, "onClick: stopping srvice");      stopService(new Intent(this, MyService.class));      break;    }  }}

 翻译整理自:http://www.planetandroid.com/

更多相关文章

  1. Android——自定义Toast(含源码下载)
  2. Android(安卓)如何对/dev/log路径设备节点进行读写
  3. Android:AIDL使用详解
  4. Android(安卓)Graphic : apk and Skia/OpenGL|ES
  5. android自绘Widget(2D)之修改存在的WIDGET
  6. Service与Android系统设计(2)
  7. Android(安卓)UI设计小知识——渐变色背景的制作
  8. Android学习笔记(十一):Activity-ListView
  9. Android(安卓)自定义绚丽的进度条(类似H5实现的一种效果)

随机推荐

  1. Android: Android Bluetooth
  2. Android根据文件路径使用File类获取文件
  3. Android Fresco图片处理库用法API英文原
  4. Android外设存储设备的访问及测试
  5. Android巧用DecorView实现对话框功能
  6. 【Android】如何让跑马灯跑起来-控件请求
  7. 【边做项目边学Android】小白会遇到的问
  8. Android是什么?
  9. 安卓xml文件中设置动画匀速旋转无效?
  10. Android - Android应用程序(Application)