下面我们用简单地例子来讲解一下如何启动Service
界面如下图所示
实现该界面的xml文件的代码如下:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> <Button android:id="@+id/start" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="startService" /> <Button android:id="@+id/stop" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="stopService" /> <Button android:id="@+id/bind" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="bindService" /> <Button android:id="@+id/unbind" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="unBindService" /> </LinearLayout>
package com.yongchun.intent.ui; /* * bindService和startService都是启动Service,有什么地方不一样呢: * * 1. startService Service中使用StartService()方法来进行方法的调用,调用者和服务之间没有联系, * 即使调用者退出了,服务依然在进行 * 【onCreate()->onStartCommand()->startService()->onDestroy()】, * 注意其中没有onStart(),主要是被onStartCommand()方法给取代了,onStart方法不推荐使用了。 * ###################################################################### * 2. bindService中使用bindService()方法来绑定服务,调用者和绑定者绑在一起, 调用者一旦退出服务也就终止了 * 【onCreate()->onBind()->onUnbind()->onDestroy()】。 * * 鱼说:简而言之,我们做个最简单的测试 第一步:使用startService()启动服务播放音乐,退出应用程序后,音乐还在播放. * 第二步:使用bindService()启动服务播放音乐,退出应用程序后,音乐的播放也随之停止了. */ import android.app.Activity; import android.content.ComponentName; import android.content.Intent; import android.content.ServiceConnection; import android.os.Bundle; import android.os.IBinder; import android.view.View; import android.view.View.OnClickListener; public class MainActivity extends Activity implements OnClickListener { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // 加载布局文件 setContentView(R.layout.main); // 获取对控件的引用,并设置监听 findViewById(R.id.start).setOnClickListener(this); findViewById(R.id.stop).setOnClickListener(this); findViewById(R.id.bind).setOnClickListener(this); findViewById(R.id.unbind).setOnClickListener(this); } // 创建一个 ServiceConnection 对象 final ServiceConnection connection = new ServiceConnection() { public void onServiceDisconnected(ComponentName name) { // TODO Auto-generated method stub } public void onServiceConnected(ComponentName name, IBinder service) { // TODO Auto-generated method stub } }; // 监听事件 public void onClick(View v) { // TODO Auto-generated method stub Intent intent = new Intent(MainActivity.this, PlayRadioService.class); switch (v.getId()) { // startService()方法开启服务 case R.id.start: startService(intent); break; // stopService()方法停止服务 case R.id.stop: stopService(intent); break; // bindService()方法开启服务 case R.id.bind: bindService(intent, connection, BIND_AUTO_CREATE); break; // unbindService()方法停止服务 case R.id.unbind: unbindService(connection); break; default: break; } } }
接下来是Service的代码:
package com.yongchun.intent.ui; import android.app.Service; import android.content.Intent; import android.media.MediaPlayer; import android.os.IBinder; import android.util.Log; /** * 作者:肥鱼 QQ群:104780991 Email:[email protected] * 关于:一条致力于Android开源事业的鱼,还是肥的.吃得多赚的少还不会暖床,求包养. */ public class PlayRadioService extends Service { private MediaPlayer player; @Override public void onCreate() { // TODO Auto-generated method stub Log.v("PlayRadioSevice", "Service onCreat()执行成功"); // 创建一个MediaPlayer的对象,并将多媒体文件加载. player = MediaPlayer.create(this, R.raw.test); // setLooping(boolean);方法,接受的是boolean值 // true 表示循环播放 // false 表示不循环播放 // 默认值为false,即不循环播放 player.setLooping(true); super.onCreate(); } @Override public void onStart(Intent intent, int startId) { // TODO Auto-generated method stub // MediaPlayer对象的start()方法 player.start(); Log.v("音乐播放", "开始"); super.onStart(intent, startId); } @Override public void onDestroy() { // TODO Auto-generated method stub // MediaPlayer对象的stop()方法 player.stop(); Log.v("音乐播放", "停止"); super.onDestroy(); } @Override public boolean onUnbind(Intent intent) { // TODO Auto-generated method stub // MediaPlayer对象的stop()方法 Log.v("音乐播放", "停止#####onUnbind"); return super.onUnbind(intent); } @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub // MediaPlayer对象的start()方法 player.start(); Log.v("音乐播放", "开始####onBind"); return null; } }
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.yongchun.intent.ui" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" > <activity android:name=".MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name=".PlayRadioService" > </service> </application> </manifest>
插播广告: QQ群: 104780991 欢迎致力于Android开源事业的朋友.
版权声明:本文为博主原创文章,未经博主允许不得转载。