package com.example.serverprocess;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.os.MemoryFile;
import android.os.Parcel;
import android.os.ParcelFileDescriptor;
import android.os.RemoteException;
import com.android.binder.AidlReporter;
import com.example.serverprocess.service.AidlService;
import com.example.serverprocess.service.BinderService;
import java.io.FileDescriptor;
import java.lang.reflect.Method;
import static android.R.attr.type;
public class MainActivity extends Activity {
private IBinder mReporterBind;
private AidlReporter mReporterAidl;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Intent intent = new Intent(this, BinderService.class);
bindService(intent, new BindConnection(), BIND_AUTO_CREATE);
intent = new Intent(this, AidlService.class);
bindService(intent, new AidlConnection(), BIND_AUTO_CREATE);
}
private void memoryShare() throws Exception {
byte[] contentBytes = new byte[100];
MemoryFile mf = new MemoryFile("memfile", contentBytes.length);
mf.writeBytes(contentBytes, 0, 0, contentBytes.length);
Method method = MemoryFile.class.getDeclaredMethod("getF
Android内存共享、进程间高性能IO、手动实现 Binder IPC、Aidl例子
最新推荐文章于 2024-07-30 09:56:12 发布
本文展示了如何在Android中实现内存共享、进程间通信(IPC)和使用AIDL(Android Interface Definition Language)进行 Binder IPC 的示例。通过创建自定义 Binder 类型和使用 AIDL 定义接口,演示了在不同进程中传递数据和执行操作的方法。
摘要由CSDN通过智能技术生成