我有两个应用程序,我想要交换一些数据。因为它们在不同的进程中运行,所以,我使用AIDL在它们之间进行通信。现在,一切都在一个方向上发生了很大的事情(比如我的应用程序是A和B),即数据从A发送到B,但现在我需要将一些数据从B发送到A.
我注意到我们需要在app的构建路径中包含带有AIDL的应用程序,其中将调用AIDL方法。所以在我的情况下,A在其构建路径中包含B.为了能够向A发送内容,通过该逻辑,B将在其构建路径中需要A.这将创造一个循环。
我在这一点上陷入困境。我想不出围绕这个循环的工作。
---- ---- EDIT
所以,我按照下面其中一条评论中提到的建议,我有以下代码 在IPCAIDL项目中,AIDL文件驻留, 其内容是
package ipc.android.aidl;
interface Iaidl{
boolean pushBoolean(boolean flag);
}
此项目在IPCServer和IPC客户端中都用作库。
IPCServer项目具有定义AIDL方法发生情况的服务。 该文件是booleanService.java
package ipc.android.server;
import ipc.android.aidl.Iaidl;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;
import android.util.Log;
public class booleanService extends Service {
@Override
public IBinder onBind(Intent intent) {
return new Iaidl.Stub() {
@Override
public boolean pushBoolean(boolean arg0) throws RemoteException {
Log.i("SERVER(IPC AIDL)", "Truth Value:"+arg0);
return arg0;
}
};
}
}
调用此方法的IPCClient文件是
package ipc.android.client2;
import ipc.android.aidl.Iaidl;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import android.view.View;
import android.widget.Button;
public class IPCClient2Activity extends Activity {
Button b1;
Iaidl iAIDL;
boolean k = false;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
bindService(new Intent("ipc.android.server.booleanService"), conn, Context.BIND_AUTO_CREATE);
startService(new Intent("ipc.android.server.booleanService"));
b1 = (Button) findViewById(R.id.button1);
b1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(k){
k = false;
}
else{
k = true;
}
try {
iAIDL.pushBoolean(k);
} catch (RemoteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
}
private ServiceConnection conn = new ServiceConnection() {
@Override
public void onServiceDisconnected(ComponentName name) {
// TODO Auto-generated method stub
}
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
iAIDL = Iaidl.Stub.asInterface(service);
}
};
}
IPCServer的清单文件包含服务声明。清单文件在
下面<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ipc.android.server"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".IPCServerActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".booleanService">
<intent-filter>
<action android:name="ipc.android.server.booleanService">
</action>
</intent-filter>
</service>
</application>
</manifest>
答案 0 :(得分:0)
您只需要在两个项目中包含AIDL规范(无需引用所有其他项目)。您可以保留AIDL的一个副本,并在两个项目中引用该副本。如果您正在使用Eclipse,请查找构建路径属性并将包含AIDL的目录添加为源目录。