Android实现远程服务端与客户端的通信AIDLSumDemo

第三次作业:使用AIDL实现远程服务端与客户端的通信

注:所建工程均为Android 6.0 所以只要是Android 6.0(包括6.0)以上的真机,模拟机都可以使用

首先来了解什么是AIDL:

AIDL是一个缩写,全称是Android Interface Definition Language,也就是Android接口定义语言。是的,首先我们知道的第一点就是:AIDL是一种语言,而设计这门语言的目的是为了实现进程间通信,所以接下来我们就开始来使用AIDL来实现远程通信。

这里写了一个案例:AIDLSumDemo1

通过在服务端写Sum方法,通过接口实现客户端的调用,一般会建立两个工程,一个是客户端,一个是服务端,通过复制AIDL文件,保证两者一致,但其实现在一个工程里也是可以的,本例就是在一个工程里实现的。

相关代码:

MainActivity.java:

public class MainActivity extends AppCompatActivity {

    //public static int w(String tag, String msg, Throwable tr)
    private static final String TAG = "MainActivity";

    IAdditionService service;
    AdditionServiceConnection connection;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initService();

        Button buttonCalc = (Button)findViewById(R.id.buttonCalc);
        buttonCalc.setOnClickListener(new View.OnClickListener() {
            EditText value1 = (EditText)findViewById(R.id.value1);
            EditText value2= (EditText)findViewById(R.id.value2);
            TextView result = (TextView)findViewById(R.id.result);
            @Override
            public void onClick(View v) {
                int v1, v2, res = -1;
                v1 = Integer.parseInt(value1.getText().toString());
                v2 = Integer.parseInt(value2.getText().toString());

                try {
                    res = service.add(v1, v2);
                } catch (RemoteException e) {
                    e.printStackTrace();
                }

                result.setText(Integer.valueOf(res).toString());
            }
        });
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        releaseService();
    }

    class AdditionServiceConnection implements ServiceConnection {

        @Override
        public void onServiceConnected(ComponentName name, IBinder boundService) {
            service = IAdditionService.Stub.asInterface(boundService);
            Toast.makeText(MainActivity.this, "Service connected", Toast.LENGTH_LONG).show();
            Log.i(TAG, "onServiceConnected: 连接成功");
            Log.d(TAG, "onServiceConnected() called with: name = [" + name.toString() + "], boundService = [" + boundService.toString()+ "]");

        }

        @Override
        public void onServiceDisconnected(ComponentName name) {
            service = null;
            Toast.makeText(MainActivity.this, "Service disconnected", Toast.LENGTH_LONG).show();
        }
    }
    /*
     * This method connects the Activity to the service
     * 这个方法使Activity(客户端)连接到服务(service)
     */
    private void initService() {
        connection = new AdditionServiceConnection();
        Intent i = new Intent();
        i.setClassName("com.example.aidlsumdemo1", com.example.aidlsumdemo1.AdditionService.class.getName());
        bindService(i, connection, Context.BIND_AUTO_CREATE);
        Log.d(TAG, "initService() called");
    }

    /*
     * This method disconnects the Activity from the service
     * 这个方法使Activity(客户端)从服务(service)断开
     */
    private void releaseService() {
        unbindService(connection);
        connection = null;
    }


}

activity_main.xml:

 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        android:layout_marginTop="20pt"
        android:layout_marginLeft="20dp">
       <!-- <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Client&&ServiceDemo1!"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
-->
        <EditText
            android:id="@+id/value1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="@string/hint1" >
        </EditText>

        <TextView
            android:id="@+id/TextView01"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/plus"
            android:textSize="30sp" />

        <EditText
            android:id="@+id/value2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="@string/hint2" >
        </EditText>

        <Button
            android:id="@+id/buttonCalc"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="@string/equal"
            android:textSize="10pt">
        </Button>

        <TextView
            android:id="@+id/result"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/result"
            android:textSize="11pt" />

    </LinearLayout>

新建的Class—AdditionService.java:

public class AdditionService extends Service {
    public AdditionService() {
    }
    private static final String TAG = "AdditionService";
    @Override
    public IBinder onBind(Intent intent) {
        Log.i(TAG, "onBind: ");
        Log.d(TAG, "onBind() called with: intent = [" + intent.toString() + "]");
        return new IAdditionService.Stub() {
            /*
             * Implement com.android.hellosumaidl.IAdditionService.add(int, int)
             * 实现了add方法
             */
            @Override
            public int add(int value1, int value2) throws RemoteException {
                return value1 + value2;
            }
        };

    }
}

在project视图下,找到main文件夹,新建aidl文件夹,在里面新建AIDL文件,或者直接新建AIDL文件也可,系统会自动生成文件夹,文件名为:IAdditionService.aidl。最重要的一点,在建立好aidl文件之后,一定要编译一下,才可以,要不是无法实现通信的,点击像锤子的按钮,或者快捷键(ctrl+F9).

IAdditionService.aidl:

// IAdditionService.aidl
package com.example.aidlsumdemo1;

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

interface IAdditionService {
    /**
     * Demonstrates some basic types that you can use as parameters
     * and return values in AIDL.
     */
    int add(in int value1, in int value2);

}

AndroidManifest.xml:

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <service
        android:name=".AdditionService"
        android:enabled="true"
        android:exported="false"></service>

    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

实验可能用到的截图:

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

源代码下载:AIDLSumSemo1.zip

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值