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>
2、编写MainActivity.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | 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; @Override protected 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{ //在服务被成功绑定的时候调用的方法 @Override public void onServiceConnected(ComponentName name, IBinder service) { // TODO Auto-generated method stub System.out.println( "testserver代理人返回回来了" ); //步骤3:服务返回的IBinder对象会被传递给MyConn的回调方法 myBinder=(MyBinder)service; } //在服务失去绑定的时候调用的方法 只有程序异常终止才会调用该方法 @Override public void onServiceDisconnected(ComponentName name) { // TODO Auto-generated method stub } } } |
3、编写TestServer服务
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | 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 { @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub System.out.println( "服务被成功的绑定了------..." ); //步骤2:服务在成功绑定的时候会调用onBind方法,返回一个IBinder对象 return new MyBinder(); } public class MyBinder extends Binder{ @SuppressWarnings ( "unused" ) public void callchangeSing(String name) { changeSing(name); } } @Override public void onCreate() { // TODO Auto-generated method stub super .onCreate(); System.out.println( "开启服务------..." ); } @Override public void onDestroy() { // TODO Auto-generated method stub super .onDestroy(); System.out.println( "销毁服务------..." ); } public void changeSing(String name) { Toast.makeText(getApplicationContext(), "切换至当前的音乐" +name, 0 ).show(); } } |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步