写一个android binder demo
时间: 2023-12-10 12:41:05 浏览: 184
好的,下面是一个简单的 Android Binder Demo。
首先,我们定义一个 AIDL 接口文件 `IDemoService.aidl`,它包含一个方法 `int add(int a, int b)`,用于计算两个整数的和。
```aidl
// IDemoService.aidl
interface IDemoService {
int add(int a, int b);
}
```
然后,我们实现这个接口,创建一个名为 `DemoService` 的服务类,它继承自 `IDemoService.Stub`,实现 `add()` 方法。
```java
// DemoService.java
public class DemoService extends IDemoService.Stub {
@Override
public int add(int a, int b) throws RemoteException {
return a + b;
}
}
```
接下来,我们创建一个 `Service` 类 `DemoServiceClass`,并在其中实现 `onBind()` 方法,返回 `DemoService` 对象。
```java
// DemoServiceClass.java
public class DemoServiceClass extends Service {
private DemoService demoService;
@Override
public void onCreate() {
super.onCreate();
demoService = new DemoService();
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return demoService;
}
}
```
最后,在 `AndroidManifest.xml` 中声明服务。
```xml
<!-- AndroidManifest.xml -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.binderdemo">
<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">
<!-- 声明 DemoServiceClass -->
<service android:name=".DemoServiceClass" />
<activity
android:name=".MainActivity"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
```
现在,我们可以在 `MainActivity` 中创建一个远程服务连接,调用 `add()` 方法并显示结果。
```java
// MainActivity.java
public class MainActivity extends AppCompatActivity {
private IDemoService demoService;
private boolean connected = false;
private ServiceConnection connection = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
demoService = IDemoService.Stub.asInterface(iBinder);
connected = true;
}
@Override
public void onServiceDisconnected(ComponentName componentName) {
demoService = null;
connected = false;
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Intent intent = new Intent(this, DemoServiceClass.class);
bindService(intent, connection, Context.BIND_AUTO_CREATE);
Button button = findViewById(R.id.button);
final TextView result = findViewById(R.id.result);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (connected) {
try {
int a = Integer.parseInt(((EditText) findViewById(R.id.input1)).getText().toString());
int b = Integer.parseInt(((EditText) findViewById(R.id.input2)).getText().toString());
int sum = demoService.add(a, b);
result.setText(String.valueOf(sum));
} catch (RemoteException e) {
e.printStackTrace();
}
} else {
result.setText("Service not connected");
}
}
});
}
@Override
protected void onDestroy() {
super.onDestroy();
unbindService(connection);
}
}
```
这就是一个简单的 Android Binder Demo。它演示了如何创建一个远程服务,实现 AIDL 接口并将其绑定到 Activity。
阅读全文