1、编写activity_main.xml

绑定方式开始服务&调用服务的方法
<LinearLayout 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:orientation="vertical"    tools:context=".MainActivity" >    <Button         android:onClick="start"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="开启服务"        />        <Button         android:onClick="stop"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="停止服务"        />        <Button         android:onClick="bind"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="绑定服务"        />        <Button         android:onClick="unbind"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="解除绑定服务"        />        <Button         android:onClick="change"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="调用方法,切换至下一首歌曲"        /></LinearLayout>
View Code

2、编写MainActivity.java

package com.hyzhou.testservice;import com.hyzhou.testservice.TestServer.MyBinder;import android.os.Bundle;import android.os.IBinder;import android.view.View;import android.app.Activity;import android.content.ComponentName;import android.content.Intent;import android.content.ServiceConnection;public class MainActivity extends Activity {//步骤4:在activity里面得到服务IBinder对象的引用private TestServer.MyBinder myBinder;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);}public void start(View view){Intent intent=new Intent(this,TestServer.class);startService(intent);}public void stop(View view){Intent intent=new Intent(this,TestServer.class);stopService(intent);}public void bind(View view){Intent intent=new Intent(this,TestServer.class);/** * intent 激活服务意图 * conn 代理人中间人对象,用来跟服务建立联系不能为空 * BIND_AUTO_CREATE 在绑定服务的时候 如果服务不存在就自动创建 *///步骤1:采用绑定的方式开启服务bindService(intent, new MyConn(), BIND_AUTO_CREATE);}public void unbind(View view){Intent intent=new Intent(this,TestServer.class);}public void change(View view){/** * 由于系统框架在创建服务的时候会创建与之对应的上下文 * 下面的代码是直接new对象 * TestService service=new TestService(); * service.changeSing("月亮之上"); *///步骤5:利用IBinder对象间接调用服务里面的方法myBinder.callchangeSing("月亮至上");}private class MyConn implements ServiceConnection{//在服务被成功绑定的时候调用的方法@Overridepublic void onServiceConnected(ComponentName name, IBinder service) {// TODO Auto-generated method stubSystem.out.println("testserver代理人返回回来了");//步骤3:服务返回的IBinder对象会被传递给MyConn的回调方法myBinder=(MyBinder)service;}//在服务失去绑定的时候调用的方法  只有程序异常终止才会调用该方法@Overridepublic void onServiceDisconnected(ComponentName name) {// TODO Auto-generated method stub}}}

  3、编写TestServer服务

package com.hyzhou.testservice;import android.app.Service;import android.content.Intent;import android.os.Binder;import android.os.IBinder;import android.widget.Toast;/** *  *//** * @author hyzhou * * 2013-12-10 */public class TestServer extends Service {@Overridepublic IBinder onBind(Intent intent) {// TODO Auto-generated method stubSystem.out.println("服务被成功的绑定了------...");//步骤2:服务在成功绑定的时候会调用onBind方法,返回一个IBinder对象return new MyBinder();}public  class MyBinder extends Binder{@SuppressWarnings("unused")public void callchangeSing(String name){changeSing(name);}}@Overridepublic void onCreate() {// TODO Auto-generated method stubsuper.onCreate();System.out.println("开启服务------...");}@Overridepublic void onDestroy() {// TODO Auto-generated method stubsuper.onDestroy();System.out.println("销毁服务------...");}public void changeSing(String name){Toast.makeText(getApplicationContext(), "切换至当前的音乐"+name, 0).show();}}

  

更多相关文章

  1. Android 工具类的两种写法---单例模式与静态方法
  2. Android GreenDao 建表及 获取SessionDao对象 单例
  3. android中实现背景图片颜色渐变方法
  4. INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES错误解决方法
  5. Android ZXing二维码识别优化方法
  6. Android数据库中事务操作方法之银行转账示例
  7. ListView的右边滚动滑块启用方法
  8. 【Android】通过手势切换屏幕的几种方法
  9. Android如何使用读写cookie的方法

随机推荐

  1. Android高手应该精通哪些内容?
  2. Android热修复(二):以DexClassLoader类加载
  3. Android在TQ2440开发板上的移植
  4. Android应用实例之----基于Service与Cont
  5. Android驱动使用JNI调用
  6. Android(安卓)- Android(安卓)Studio 安
  7. Android使用RecyclerView实现列表功能
  8. Android图表应用分享
  9. Android(安卓)倒计时功能,完美解决系统时
  10. android 线程大集合