最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android編程實(shí)現(xiàn)AIDL(跨進(jìn)程通信)的方法詳解

 更新時(shí)間:2016年06月28日 11:15:39   作者:zeo  
這篇文章主要介紹了Android編程實(shí)現(xiàn)AIDL(跨進(jìn)程通信)的方法,結(jié)合實(shí)例形式詳細(xì)分析了Android實(shí)現(xiàn)AIDL(跨進(jìn)程通信)的原理、具體流程與相關(guān)實(shí)現(xiàn)技巧,需要的朋友可以參考下

本文實(shí)例講述了Android編程實(shí)現(xiàn)AIDL(跨進(jìn)程通信)的方法。分享給大家供大家參考,具體如下:

一. 概述:

跨進(jìn)程通信(AIDL),主要實(shí)現(xiàn)進(jìn)程(應(yīng)用)間數(shù)據(jù)共享功能。

二. 實(shí)現(xiàn)流程:

1. 服務(wù)器端實(shí)現(xiàn):

(1)目錄結(jié)構(gòu),如下圖:

(2)實(shí)現(xiàn)*.aidl文件:

A. IAIDLService.aidl實(shí)現(xiàn):

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

B. Person.aidl實(shí)現(xiàn):

parcelable Person;

(3)進(jìn)程間傳遞對(duì)象必需實(shí)現(xiàn)Parcelable或Serializable接口,下面是被傳遞的Person對(duì)象實(shí)現(xiàn):

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)實(shí)現(xiàn)IAIDLService.aidl文件中定義的接口,并定義Service,在Service被bind時(shí)返回此實(shí)現(xiàn)類(lèi):

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;
  }
  /**
   * 在A(yíng)IDL文件中定義的接口實(shí)現(xiàn)。
   */
  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)在A(yíng)ndroidManifest.xml文件中注冊(cè)Service:

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

2. 客戶(hù)端實(shí)現(xiàn):

(1)目錄結(jié)構(gòu),如下圖:

(2)將服務(wù)器端的IAIDLService.aidl,Person.aidl和Person.Java文件拷貝到本工程中,如上圖所示:

(3)res/layout/main.xml實(shí)現(xiàn):

<?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實(shí)現(xiàn),從服務(wù)器端獲取數(shù)據(jù)在客戶(hù)端顯示:

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;
  /**
   * 第一步,創(chuàng)建ServiceConnection對(duì)象,在onServiceConnected()方法中獲取IAIDLService實(shí)現(xiàn)。
   */
  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服務(wù)器端創(chuàng)建的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) {
        /**
         * 第三步,從服務(wù)器端獲取字符串。
         */
        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) {
        /**
         * 第四步,從服務(wù)器端獲取Person對(duì)象。
         */
        try {
          Person mPerson = mAIDLService.getPerson();
          mName.setText("姓名:" + mPerson.getName() + ", 年齡:" + mPerson.getAge());
        } catch (RemoteException e) {
          e.printStackTrace();
        }
      }
    });
  }
}

更多關(guān)于A(yíng)ndroid相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《Android數(shù)據(jù)庫(kù)操作技巧總結(jié)》、《Android編程之a(chǎn)ctivity操作技巧總結(jié)》、《Android文件操作技巧匯總》、《Android編程開(kāi)發(fā)之SD卡操作方法匯總》、《Android開(kāi)發(fā)入門(mén)與進(jìn)階教程》、《Android資源操作技巧匯總》、《Android視圖View技巧總結(jié)》及《Android控件用法總結(jié)

希望本文所述對(duì)大家Android程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • Jetpack Compose修飾符專(zhuān)項(xiàng)精講

    Jetpack Compose修飾符專(zhuān)項(xiàng)精講

    在今年的Google/IO大會(huì)上,亮相了一個(gè)全新的 Android 原生 UI 開(kāi)發(fā)框架-Jetpack Compose, 與蘋(píng)果的SwiftIUI一樣,Jetpack Compose是一個(gè)聲明式的UI框架,它可簡(jiǎn)化并加快Android上的界面開(kāi)發(fā),使用更少的代碼、強(qiáng)大的工具和直觀(guān)的 Kotlin API,快速讓?xiě)?yīng)用生動(dòng)而精彩
    2022-10-10
  • Flutter實(shí)現(xiàn)軟鍵盤(pán)與其它區(qū)域絲滑切換效果

    Flutter實(shí)現(xiàn)軟鍵盤(pán)與其它區(qū)域絲滑切換效果

    這篇文章主要為大家詳細(xì)介紹了如何使用Flutter實(shí)現(xiàn)軟鍵盤(pán)與其它區(qū)域絲滑切換效果,文中的示例代碼講解詳細(xì),需要的小伙伴可以跟隨小編一起學(xué)習(xí)一下
    2024-03-03
  • Android補(bǔ)間動(dòng)畫(huà)的實(shí)現(xiàn)示例

    Android補(bǔ)間動(dòng)畫(huà)的實(shí)現(xiàn)示例

    本文主要介紹了Android補(bǔ)間動(dòng)畫(huà)的實(shí)現(xiàn)示例,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2023-04-04
  • flutter?Bloc?add兩次只響應(yīng)一次問(wèn)題解析

    flutter?Bloc?add兩次只響應(yīng)一次問(wèn)題解析

    這篇文章主要為大家介紹了flutter?Bloc?add兩次只響應(yīng)一次問(wèn)題解析記錄,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-11-11
  • Android實(shí)現(xiàn)波浪球效果

    Android實(shí)現(xiàn)波浪球效果

    這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)波浪球效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-08-08
  • 解析后臺(tái)進(jìn)程對(duì)Android性能影響的詳解

    解析后臺(tái)進(jìn)程對(duì)Android性能影響的詳解

    本篇文章是對(duì)Android中后臺(tái)進(jìn)程對(duì)Android性能的影響進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
    2013-05-05
  • Android Studio 下 Flutter 開(kāi)發(fā)環(huán)境搭建過(guò)程

    Android Studio 下 Flutter 開(kāi)發(fā)環(huán)境搭建過(guò)程

    這篇文章主要介紹了Android Studio 下 Flutter 開(kāi)發(fā)環(huán)境搭建/Flutter / Dart 插件安裝 | Flutter SDK 安裝 | 環(huán)境變量配置 | 開(kāi)發(fā)環(huán)境檢查,本文圖文并茂給大家介紹的非常詳細(xì),需要的朋友可以參考下
    2020-03-03
  • Android使用OKHTTP解析JSON數(shù)據(jù)的實(shí)例代碼

    Android使用OKHTTP解析JSON數(shù)據(jù)的實(shí)例代碼

    本篇文章主要介紹了Android使用OKHTTP解析JSON數(shù)據(jù)的實(shí)例代碼,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-07-07
  • Android中activity從創(chuàng)建到顯示的基本介紹

    Android中activity從創(chuàng)建到顯示的基本介紹

    這篇文章主要給大家介紹了關(guān)于A(yíng)ndroid中activity從創(chuàng)建到顯示的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)各位Android初學(xué)者們具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起看看吧。
    2017-11-11
  • Android table布局開(kāi)發(fā)實(shí)現(xiàn)簡(jiǎn)單計(jì)算器

    Android table布局開(kāi)發(fā)實(shí)現(xiàn)簡(jiǎn)單計(jì)算器

    這篇文章主要為大家詳細(xì)介紹了Android table布局開(kāi)發(fā)實(shí)現(xiàn)簡(jiǎn)單計(jì)算器,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-05-05

最新評(píng)論

阿巴嘎旗| 靖宇县| 衡南县| 横山县| 绥江县| 柞水县| 济源市| 望都县| 华宁县| 石楼县| 西昌市| 南开区| 昌邑市| 托里县| 原平市| 漳州市| 新蔡县| 镇雄县| 赫章县| 绵竹市| 新源县| 临汾市| 庆安县| 绥芬河市| 吴桥县| 宿松县| 易门县| 公安县| 冷水江市| 盈江县| 屏山县| 邢台县| 平乡县| 绥棱县| 越西县| 宁晋县| 团风县| 翼城县| 安宁市| 安陆市| 克东县|