文章
71
标签
0
分类
12
首页
归档
分类
关于
Auroraの世界
IPC的优缺点
返回首页
搜索
首页
归档
分类
关于
IPC的优缺点
发表于
2025-10-17
|
更新于
2025-12-19
|
Android进阶
|
总字数:
0
|
阅读时长:
1分钟
|
浏览量:
文章作者:
Aurora
文章链接:
https://buyu6.github.io/posts/IPC%E7%9A%84%E4%BC%98%E7%BC%BA%E7%82%B9/
版权声明:
本博客所有文章除特别声明外,均采用
CC BY-NC-SA 4.0
许可协议。转载请注明来源
Auroraの世界
!
上一篇
将全景图应用到项目的方法
准备工作 自己准备的全景图 pannellum.js文件 pannellum.css文件 正式步骤 将准备的三个文件移动到assets文件夹下 在assets文件夹下创建index.html 1234567891011121314151617181920212223242526272829303132333435363738394041<!DOCTYPE html><html><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Panorama</title> <link rel="stylesheet" href="pannellum.css"/> <script ty...
下一篇
Binder连接池
先创建不同需求的AIDL接口 12345678910interface ICompute {//计算加法的功能 int add(int a,int b);}interface ISecurityCenter {//加密 String encrypt(String content); //解密 String decrypt(String password);} 对创建的接口进行实现 123456789101112131415161718192021222324public class ComputeImpl extends ICompute.Stub{ @Override public int add(int a, int b) throws RemoteException { return a+b; }}public class SecurityCenterImpl extends ISecurityCenter.Stub{ ...
Aurora
分享学习历程,编程技术以及笔记随笔等
文章
71
标签
0
分类
12
My GitHub
公告
This is my Blog
最新文章
View的工作原理
2026-02-07
算法专题
2026-01-30
View的事件体系
2026-01-06
将全景图应用到项目的方法
2025-11-03
IPC的优缺点
2025-10-17
搜索
数据加载中