2. 客户端实现:
(1)目录结构,如下图:

(2)将服务器端的IAIDLService.aidl,Person.aidl和Person.java文件拷贝到本工程中,如上图所示:
(3)res/layout/main.xml实现:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
android:orientation = "vertical"
android:layout_width = "fill_parent"
android:layout_height = "fill_parent"
>

<TextView
android:id = "@+id/name"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
/>

<Button
android:id = "@+id/connection"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:text = "连接"
/>

<Button
android:id = "@+id/message"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:enabled = "false"
android:text = "信息"
/>

<Button
android:id = "@+id/person"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:enabled = "false"
android:text = "人"
/>

</LinearLayout>

(4)主Activity实现,从服务器端获取数据在客户端显示:

package eoe.demo;

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.RemoteException;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

import com.focus.aidl.IAIDLService;
import com.focus.aidl.Person;

public class AIDLClientAcitivty extends Activity {

private IAIDLService mAIDLService;
private TextView mName;
private Button mMessage;
private Button mPerson;

/**
* 第一步,创建ServiceConnection对象,在onServiceConnected()方法中获取IAIDLService实现。
*/
private ServiceConnection mServiceConnection = new ServiceConnection() {

public void onServiceConnected(ComponentName name, IBinder service) {
mAIDLService = IAIDLService.Stub.asInterface(service);

mMessage.setEnabled(true);
mPerson.setEnabled(true);
}

public void onServiceDisconnected(ComponentName name) {
mAIDLService = null;

mMessage.setEnabled(false);
mPerson.setEnabled(false);
}

};

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.main);
mName = (TextView) findViewById(R.id.name);

findViewById(R.id.connection).setOnClickListener(new OnClickListener() {
public void onClick(View view) {

/**
* 第二步,单击"连接"按钮后用mServiceConnection去bind服务器端创建的Service。
*/
Intent service = new Intent("com.focus.aidl.IAIDLService");
bindService(service, mServiceConnection, BIND_AUTO_CREATE);

}
});

mMessage = (Button) findViewById(R.id.message);
mMessage.setOnClickListener(new OnClickListener() {
public void onClick(View view) {


/**
* 第三步,从服务器端获取字符串。
*/
try {
mName.setText(mAIDLService.getName());
} catch (RemoteException e) {
e.printStackTrace();
}
}
});

mPerson = (Button) findViewById(R.id.person);
mPerson.setOnClickListener(new OnClickListener() {
public void onClick(View view) {
/**
* 第四步,从服务器端获取Person对象。
*/
try {
Person mPerson = mAIDLService.getPerson();
mName.setText("姓名:" + mPerson.getName() + ", 年龄:" + mPerson.getAge());
} catch (RemoteException e) {
e.printStackTrace();
}
}
});
}

}



更多相关文章

  1. 面试篇--android下网络通讯机制(三种网络通讯方式)
  2. Android使用Jsoup解析Html表格的方法
  3. Android-Fresco系列6 图片解码
  4. Data Storage -- Using Databases[SDK翻译]
  5. Android---58---初学GPS定位
  6. android > ListView > 加载 网络/assets图片
  7. android socket wifi 连接PC实现简单的PPT控制器(源码)
  8. Android(安卓)App增量更新详解及实例代码
  9. 6.2、Android中向Internet发送xml数据

随机推荐

  1. 自定义ListView背景(解决了拖动变黑的效果
  2. HTML5移动Web应用程序的JavaScript 框架
  3. Android Studio 出现 Gradle's dependenc
  4. 深度揭秘android摄像头的autoFocus-----
  5. Android平台架构简介
  6. Android开发中的autocomplete控件
  7. 开始学习android
  8. windows平台下Android studio开发环境搭
  9. Android中Preference的使用以及监听事件
  10. Android触摸事件的分发处理