文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android编程实现AIDL(跨进程通信)的方法详解

2022-06-06 08:14

关注

本文实例讲述了Android编程实现AIDL(跨进程通信)的方法。分享给大家供大家参考,具体如下:

一. 概述:

跨进程通信(AIDL),主要实现进程(应用)间数据共享功能。

二. 实现流程:

1. 服务器端实现:

(1)目录结构,如下图:

(2)实现*.aidl文件:

A. IAIDLService.aidl实现:


package com.focus.aidl;
import com.focus.aidl.Person;
interface IAIDLService {
  String getName();
  Person getPerson();
}

B. Person.aidl实现:


parcelable Person;

(3)进程间传递对象必需实现Parcelable或Serializable接口,下面是被传递的Person对象实现:


package com.focus.aidl;
import android.os.Parcel;
import android.os.Parcelable;
public class Person implements Parcelable {
  private String name;
  private int age;
  public Person() {
  }
  public Person(Parcel source) {
    name = source.readString();
    age = source.readInt();
  }
  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
  public int getAge() {
    return age;
  }
  public void setAge(int age) {
    this.age = age;
  }
  public int describeContents() {
    return 0;
  }
  public void writeToParcel(Parcel dest, int flags) {
    dest.writeString(name);
    dest.writeInt(age);
  }
  public static final Parcelable.Creator<Person> CREATOR = new Creator<Person>() {
    public Person[] newArray(int size) {
      return new Person[size];
    }
    public Person createFromParcel(Parcel source) {
      return new Person(source);
    }
  };
}

(4)实现IAIDLService.aidl文件中定义的接口,并定义Service,在Service被bind时返回此实现类:


package com.focus.aidl;
import com.focus.aidl.IAIDLService.Stub;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;
public class AIDLServiceImpl extends Service {
  @Override
  public IBinder onBind(Intent intent) {
    return mBinder;
  }
  
  private IAIDLService.Stub mBinder = new Stub() {
    public String getName() throws RemoteException {
      return "mayingcai";
    }
    public Person getPerson() throws RemoteException {
      Person mPerson = new Person();
      mPerson.setName("mayingcai");
      mPerson.setAge(24);
      return mPerson;
    }
  };
}

(5)在AndroidManifest.xml文件中注册Service:


<service android:name = ".AIDLServiceImpl" android:process = ":remote">
  <intent-filter>
    <action android:name = "com.focus.aidl.IAIDLService" />
  </intent-filter>
</service>

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 com.focus.aidl.client;
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;
  
  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) {
        
        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) {
        
        try {
          Person mPerson = mAIDLService.getPerson();
          mName.setText("姓名:" + mPerson.getName() + ", 年龄:" + mPerson.getAge());
        } catch (RemoteException e) {
          e.printStackTrace();
        }
      }
    });
  }
}

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android数据库操作技巧总结》、《Android编程之activity操作技巧总结》、《Android文件操作技巧汇总》、《Android编程开发之SD卡操作方法汇总》、《Android开发入门与进阶教程》、《Android资源操作技巧汇总》、《Android视图View技巧总结》及《Android控件用法总结》

希望本文所述对大家Android程序设计有所帮助。

您可能感兴趣的文章:Android应用程序四大组件之使用AIDL如何实现跨进程调用ServiceAndroid 跨进程模拟按键(KeyEvent )实例详解Android通过RemoteViews实现跨进程更新UI示例Android AIDL实现两个APP间的跨进程通信实例Android IPC机制利用Messenger实现跨进程通信详解Android跨进程IPC通信AIDL机制原理Android 跨进程SharedPreferences异常详解Android跨进程抛异常的原理的实现Android 跨进程通Messenger(简单易懂)Android实现跨进程接口回掉的方法


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯