android aidl使用demo

news/2024/11/27 23:46:13/

android使用aidl原理

参考链接: https://www.twle.cn/l/yufei/android/android-basic-service-aidl.html

通过这部分代码, 加深对Android AIDL的理解

aidl server端

ILanguage.aidl

步骤: 在main目录下创建aidl文件夹, 并创建对应的包 com.example.aidl, 然后创建ILanguage.aidl文件, 然后执行android studio的 Build->Make Project, 生成aidl的编译文件(这一步不可缺少)

// ILanguage.aidl
package com.example.aidl;interface ILanguage {String queryLanguage(int num);
}

MsLanguageService.java

package com.example.aidl_server;import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;import com.example.aidl.ILanguage;public class MsLanguageService extends Service {private IBinder binder = new LanguageQueryBinder();private String[] names = {"python", "php", "java", "kotlin", "c", "swift"};private String query(int num) {if (num > 0 && num < 6) {return names[num - 1];}return null;}@Overridepublic IBinder onBind(Intent intent) {System.out.println("**********执行Server端的OnBind()方法*********");return binder;}private final class LanguageQueryBinder extends ILanguage.Stub {@Overridepublic String queryLanguage(int num) throws RemoteException {return query(num);}}
}

AndroidManifest.xml

清单文件中注册服务

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"package="com.example.aidl_server"><applicationandroid:allowBackup="true"android:icon="@mipmap/ic_launcher"android:label="@string/app_name"android:roundIcon="@mipmap/ic_launcher_round"android:supportsRtl="true"android:theme="@style/Theme.ComprehensiveExerciseTest"><activity android:name=".MainActivity"><intent-filter><action android:name="android.intent.action.MAIN" /><category android:name="android.intent.category.LAUNCHER" /></intent-filter></activity><!--注册服务--><serviceandroid:name=".MsLanguageService"android:enabled="true"android:exported="true"><intent-filter><action android:name="com.example.aidl_server.MsLanguageService" /><category android:name="android.intent.category.DEFAULT" /></intent-filter></service></application></manifest>

build.gradle

plugins {id 'com.android.application'
}android {compileSdkVersion 30buildToolsVersion "30.0.3"defaultConfig {applicationId "com.example.aidl_server"minSdkVersion 24// 将默认版本(30)改成24,否则一直报错, 这里只是为了理解aidl的原理targetSdkVersion 24versionCode 1versionName "1.0"testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"}buildTypes {release {minifyEnabled falseproguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'}}compileOptions {sourceCompatibility JavaVersion.VERSION_1_8targetCompatibility JavaVersion.VERSION_1_8}
}dependencies {implementation 'androidx.appcompat:appcompat:1.1.0'implementation 'com.google.android.material:material:1.1.0'implementation 'androidx.constraintlayout:constraintlayout:1.1.3'testImplementation 'junit:junit:4.+'androidTestImplementation 'androidx.test.ext:junit:1.1.1'androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

代码结构图

在这里插入图片描述

aidl client端

同服务端一样创建 ILanguage.aidl

ILanguage.aidl

// ILanguage.aidl
package com.example.aidl;interface ILanguage {String queryLanguage(int num);
}

MainActivity.java

package com.example.aidl_client;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.widget.Button;
import android.widget.EditText;
import android.widget.TextView;import androidx.appcompat.app.AppCompatActivity;import com.example.aidl.ILanguage;public class MainActivity extends AppCompatActivity implements View.OnClickListener {private EditText ipt_search;private Button btn_query;private TextView txt_show;private ILanguage iLanguage;private LanguageConnection conn = new LanguageConnection();@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);bindViews();//绑定远程ServiceIntent service = new Intent("com.example.aidl_server.MsLanguageService");// service.setPackage("com.example.aidl_server");service.setPackage("com.example.aidl_server");boolean b = bindService(service, conn, BIND_AUTO_CREATE);// boolean b = getApplicationContext().bindService(service, conn, BIND_AUTO_CREATE);// System.out.println("-----------------------------");// System.out.println(service);// System.out.println(b);// System.out.println("-----------------------------");btn_query.setOnClickListener(this);}private void bindViews() {ipt_search = (EditText) findViewById(R.id.ipt_search);btn_query = (Button) findViewById(R.id.btn_query);txt_show = (TextView) findViewById(R.id.txt_show);}@Overridepublic void onClick(View v) {String number = ipt_search.getText().toString();int num = Integer.valueOf(number);System.out.println("+++++++++++++++++++++++++++++");System.out.println(iLanguage);System.out.println("+++++++++++++++++++++++++++++");try {txt_show.setText(iLanguage.queryLanguage(num));} catch (RemoteException e) {e.printStackTrace();}ipt_search.setText("");}private final class LanguageConnection implements ServiceConnection {public void onServiceConnected(ComponentName name, IBinder service) {iLanguage = ILanguage.Stub.asInterface(service);}public void onServiceDisconnected(ComponentName name) {iLanguage = null;}}
}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="请输入要查询的语言" /><EditTextandroid:id="@+id/ipt_search"android:layout_width="match_parent"android:layout_height="wrap_content"android:inputType="number" /><Buttonandroid:id="@+id/btn_query"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="查询" /><TextViewandroid:id="@+id/txt_show"android:layout_width="wrap_content"android:layout_height="wrap_content" /></LinearLayout>

build.gradle

plugins {id 'com.android.application'
}android {compileSdkVersion 30buildToolsVersion "30.0.3"defaultConfig {applicationId "com.example.aidl_client"minSdkVersion 24//同aidl服务端一样,将版本改成24targetSdkVersion 24versionCode 1versionName "1.0"testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"}buildTypes {release {minifyEnabled falseproguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'}}compileOptions {sourceCompatibility JavaVersion.VERSION_1_8targetCompatibility JavaVersion.VERSION_1_8}
}dependencies {implementation 'androidx.appcompat:appcompat:1.1.0'implementation 'com.google.android.material:material:1.1.0'implementation 'androidx.constraintlayout:constraintlayout:1.1.3'testImplementation 'junit:junit:4.+'androidTestImplementation 'androidx.test.ext:junit:1.1.1'androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

代码结构图

在这里插入图片描述

效果图

在这里插入图片描述


http://www.ppmy.cn/news/3445.html

相关文章

Microsoft SharePoint Online 更新功能可能是下一次勒索攻击的目标

Microsoft SharePoint Online是被使用最广泛的内容管理平台之一。但令人担忧的是&#xff0c;最近几年我们发现大部分攻击者可以滥用 SharePoint Online 和 OneDrive for Business 中的某项功能来加密您的所有文件并以此来勒索赎金。 SharePoint Online 据观察发现可能存在潜在…

【云计算与大数据技术】资源管理、调度模型策略的讲解

一、资源管理模型 集群资源管理模型通常由两个部分组成&#xff0c;即资源表示模型和资源分配模型&#xff0c;由于这两个部分是耦合的&#xff0c;所有优化集群资源管理时需要同时结合这两个部分考虑&#xff0c;资源表示模型用于描述集群资源的组织方式&#xff0c;是集群资…

大数据Kudu(五):Kudu基于Cloudera Manager安装及配置

文章目录 Kudu基于Cloudera Manager安装及配置 一、启动CM集群 二、登录ClouderaManager平台安装Kudu

性能测试知识之三大模型

今天的这篇文章我会聊聊在实际工作中开展性能测试&#xff0c;前期最核心的工作。即业务模型、流量模型和数据模型这三大模型&#xff0c;该如何评估和建立。在性能测试工作中&#xff0c;业务模型、流量模型和数据模型是至关重要且必须在项目中构建的&#xff0c;否则很可能导…

11-FreeRTOS配置函数 FreeRTOSConfig.h

1-FreeRTOSConfig.h介绍 FreeRTOS中的相关定义多数都在FreeRTOSConfig.h中&#xff0c;整个FreeRTOS的定义调用都可以在这里定义&#xff0c;当然你也可以自己命名一个文件实现自定义。 下面是这个文件的内容&#xff0c;如下&#xff1a; #ifndef FREERTOS_CONFIG_H #define…

突然 Java 倒下了......

TIOBE 公布了 2022 年 12 月的编程语言排行榜。 Java 首次跌出前 3 名。除此之外&#xff0c;Kotlin 和 Julia 也越来越接近 Top 20。 TIOBE 将于下个月揭晓其 2022 年度编程语言&#xff0c;目前共有 3 个候选者&#xff1a;Python、C 和 C。TIOBE CEO Paul Jansen指出&#…

【软件开发】前后端分离架构下JWT实现用户鉴权

前后端分离架构下JWT实现用户鉴权在【计算机网络】JWT&#xff08;JSON Web Token&#xff09;初识 中&#xff0c;我们讲解了 JWT 的基础知识。Token 验证的方式一般是用在前后端分离的软件开发项目中&#xff0c;所以本篇文章将会从前端和后端的角度去考虑 JWT 的实现。前端 …

【算法】实验 1 查找

目录 【实验目的】 【实验预习】 【实验内容】 1. 编写程序&#xff0c;实现顺序查找和折半查找 2. 编写程序&#xff0c;实现哈希表的构造和查找及哈希冲突的检测方法 【实验目的】 1. 掌握查找表、动态查找表、静态查找表和平均查找长度的概念 2. 掌握线性表中顺序表查…