其他分享
首页 > 其他分享> > 使用ALDL在两个app间通信

使用ALDL在两个app间通信

作者:互联网

	声明 : 在工作中经常会遇到两个App之间通信的问题,ALDL作为Android官方推荐的进程间通信工具,此篇博文,仅仅用来记录如何使用ALDL实现通信

1.服务端App

  1. 首先需要编写ALDL文件(与java文件在同一级),右键新建如下图
    在这里插入图片描述
    aldl :
// ITest.aidl
package com.hopechart.musicplayer;

interface ITest {
    void test();
    //用于测试的方法
    String greet(String someone);
}

写完aldl文件之后 点击 Make Project ,编译器会生成对应的ITest.java文件

  1. 写一个Service,用于绑定
package com.hopechart.musicplayer;
public class MyService extends Service {
    private static final HQAPI hqApi = HQAPI.getHQAPI();

    public MyService() {

    }

    @Override
    public void onCreate() {
        super.onCreate();
            }
            
	//自定义的Stub 在onBind方法中返回
    ITest.Stub stub = new ITest.Stub() {
        @Override
        public void test() throws RemoteException {
        	//通过日志测试test方法
            Log.e("MyServiceTest", "test");
        }

        @Override
        public String greet(String someone) throws RemoteException {
        	//简单的问候方法
            Log.e("MyServiceTest", "greet");
            return "hello, " + someone;
        }

    };

    @Override
    public IBinder onBind(Intent intent) {
    	//绑定成功输出的日志
       Log.e("MyServiceTest", "onBind");
        return stub;
    }

    @Override
    public boolean onUnbind(Intent intent) {
        Log.e("MyServiceTest", "onUnbind");
        return true;
    }


}

在AndroidMainifest中注册

<service
            android:name=".MyService"
            android:enabled="true"
            android:exported="true" >
        <intent-filter>
            <action android:name="com.hopechart.musicplayer.MyService" />
        </intent-filter>
        </service>

2. 客户端Service

在这里插入图片描述

//声明自定义的aldl类
private lateinit var iTest: ITest
//是否绑定成功,初始值为false
private var isBindSuccess = false

override fun onClick(v: View?) {
        when (v?.id) {
            //绑定Service
            R.id.bindService -> {
                var serviceIntent = Intent()
                serviceIntent.setPackage("com.hopechart.musicplayer")
                //MyService中的action
                serviceIntent.action = "com.hopechart.musicplayer.MyService"
                bindService(serviceIntent, object : ServiceConnection {
                    override fun onServiceDisconnected(name: ComponentName?) {

                    }

                    override fun onServiceConnected(name: ComponentName?, service: IBinder?) {
                        Log.e("testService","service连接成功")
                        //初始化自定义的Aldl
                        this@MainActivity.iTest = ITest.Stub.asInterface(service)
                        isBindSuccess = true

                    }

                },Context.BIND_AUTO_CREATE)
            }
            //调用service中的方法,测试ALDL是否实现
            R.id.testAldl -> {
                //绑定成功
                if (isBindSuccess) {
                    iTest.test()
                    try {
                        val helloNba= iTest.greet("KD")
                        //greet方法中传入字符串,将会掉用服务器端的greet方法
                        Toast.makeText(this, helloNba, Toast.LENGTH_SHORT).show()
                    } catch (e: RemoteException) {
                        e.printStackTrace()
                    }
                }


            }
        }
    }
                

如果界面弹出hello + 自定传入的参数,即绑定成功

标签:ITest,Log,app,绑定,greet,间通信,ALDL,public
来源: https://blog.csdn.net/qq_44203816/article/details/120830425