使用AIDL(一)调用方法

AIDL(Android Interface Definition Language,Android接口定义语言),它可以用于让某个Service与多个应用程序组件之间进行跨进程通信,从而可以实现多个应用程序共享同一个Service的功能。
  Messenger实现跨进程通信,其实也是基于AIDL作为底层结构。Messenger创建的一个消息队列是在一个单独的线程中,所以服务一次仅处理一个请求,然而,如果想要服务同时处理多个请求,就需要使用到AIDL,但是这种情况下就要考虑多线程和线程安全的问题了。

注意:如果只需要IPC(跨进程通信)、不需要多线程使用Messenger即可;如果只需要IPC、不需要多线程、有多个应用程序则使用Binder即可;只有当需要IPC,有多个应用程序,多线程时才使用AIDL。

示例:在客户端调用服务端的方法

1、服务端

1)创建AIDL接口,先在app/src/main目录下创建aidl文件夹,再在jun.server(程序的包名)包下创建AIDL接口文件IStudent.aidl。
app/src/main/aidl/jun.server/IStudent.aidl

// IStudent.aidl
package jun.server;

// Declare any non-default types here with import statements

interface IStudent {
    String getName();
}

2)创建AIDL接口文件之后系统是不会自动帮我们编译的,需要手动点击编译,之后会生成相应的Java文件。
app/build/generated/source/aidl/debug/jun.server/IStudent.java
  3)创建服务
RemoteService.java

public class RemoteService extends Service {

    // 解释:Stub是继承Binder的
    IStudent.Stub studentBinder = new IStudent.Stub() {

        // 获取学生名字
        @Override
        public String getName() throws RemoteException {
            return "Tom";
        }
    };

    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return studentBinder;
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        // 服务销毁前将Binder置空,方便垃圾回收器回收资源。
        studentBinder = null;
    }
}

4)记得注册Service


    
        
        
    

2、客户端

1)直接将服务端的AIDL接口文件拷贝到客户端,并手动编译。
app/src/main/aidl/jun.server/IStudent.aidl
注意:包名一样
  2)创建Activity的布局
activity_main.xml



    

添加了三个按钮便于操作。
  3)在Activity中绑定远程服务并调用它的方法
MainActivity.java

public class MainActivity extends AppCompatActivity {

    private static final String TAG = "MainActivity";

    private IStudent mIStudent;

    private ServiceConnection serviceConnection = new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
            // 拿到远程服务的代理
            mIStudent = IStudent.Stub.asInterface(service);
        }

        @Override
        public void onServiceDisconnected(ComponentName name) {
            mIStudent = null;
        }
    };

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        findViewById(R.id.bind_service).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // 设置Intent目标是jun.server包的RemoteService
                Intent intent = new Intent("jun.server.RemoteService");
                // 设置包名
                intent.setPackage("jun.server");
                bindService(intent, serviceConnection, BIND_AUTO_CREATE);
                Toast.makeText(MainActivity.this, "已绑定服务", Toast.LENGTH_SHORT).show();
            }
        });

        findViewById(R.id.unbind_service).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (serviceConnection != null) {
                    unbindService(serviceConnection);
                    // 解除绑定时需要回收mIStudent连接资源
                    mIStudent = null;
                    Toast.makeText(MainActivity.this, "已解除绑定", Toast.LENGTH_SHORT).show();
                }
            }
        });

        findViewById(R.id.invoke_method).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (mIStudent != null) {
                    try {
                        String name = mIStudent.getName();
                        Log.i(TAG, "Name: " + name);
                    } catch (RemoteException e) {
                        e.printStackTrace();
                    }
                } else {
                    Toast.makeText(MainActivity.this, "请先绑定服务", Toast.LENGTH_SHORT).show();
                }
            }
        });
    }
}
3、运行

先运行服务端再运行客户端,点击“绑定服务”按钮让客户端绑定服务端的服务,再点击“调用远程服务的方法”按钮调用服务端的getName()方法,最后点击“解除绑定”按钮解除绑定。运行结果如下:

I/MainActivity: Name: Tom

参考

Android--Service之绑定服务交互
Android Service完全解析,关于服务你所需知道的一切(下)
墨客网:AIDL-小白成长记(视频教程)

你可能感兴趣的:(使用AIDL(一)调用方法)