Skip to content

Commit e2c1963

Browse files
committed
update
1 parent b5b38ae commit e2c1963

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

_posts/the-way-of-learning/2015-05-19-Android学习之路.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,13 @@ Android开发者网站包含了以下内容:
177177
* Input源码解读——从"Show tabs"开始: <https://www.cnblogs.com/jiangxinnju/p/17035554.html>
178178
* Multi-Touch Input Parser: <https://github.com/hisdar/input_log_parser>
179179
* Android Input概念(getevent -ltr): <https://juejin.cn/post/7294147620914036786>
180+
* Android的触控重采样算法: <https://blog.csdn.net/marshal_zsx/article/details/105902296>
181+
182+
### 组合键
183+
184+
* Android U Input 系统:组合按键手势功能: <https://juejin.cn/post/7195577258906878007>
185+
* Android U Input 系统:单按键手势功能: <https://juejin.cn/post/7194457165984170021>
186+
* Android结合源码分析Power按键处理流程: <https://www.cnblogs.com/sparrowlhl/p/11174488.html>
180187

181188
### 输入法与输入法框架
182189

@@ -208,6 +215,8 @@ Android开发者网站包含了以下内容:
208215
* Android 13 返回导航大变更:返回键彻底废弃 + 可预见型返回手势: <https://juejin.cn/post/7105645114760331300>
209216
* Android 14 之返回界面升级:预览目标界面 + 全新返回箭头:<https://juejin.cn/post/7241125859729260600>
210217

218+
* Android 手势DEMO: <https://blog.csdn.net/weich_java/article/details/7035058>
219+
211220
### Accessibility
212221

213222
* Android AccessibilityService机制源码解析: <https://juejin.cn/post/6844903623013597198>
@@ -229,6 +238,11 @@ Android开发者网站包含了以下内容:
229238
* AOD相关机制: <https://blog.csdn.net/cr459464757/article/details/108054816>
230239
* 揭秘Android系统:掌握sys.powerctl,轻松提升设备续航与性能: <https://www.oryoy.com/news/jie-mi-android-xi-tong-zhang-wo-sys-powerctl-qing-song-ti-sheng-she-bei-xu-hang-yu-xing-neng.html>
231240
* Soft restarts (<= AOSP 14): <https://source.android.google.cn/docs/core/runtime/soft-restart?hl=en>
241+
* Android R PowerManagerService模块(2) WakeLock机制: <https://juejin.cn/post/6947092185930350622>
242+
243+
### 开机动画
244+
245+
* Android 12 开机动画代码与流程详解: <https://blog.csdn.net/qq_43625390/article/details/124691462>
232246

233247
### 生物识别
234248

@@ -254,6 +268,9 @@ Android开发者网站包含了以下内容:
254268
* battery-historian: <https://github.com/google/battery-historian>
255269
* 移动性能测试 Monkey+battery-historian 电量测试 (五): <https://testerhome.com/topics/12241>
256270
* Android 使用adb查看和修改电池信息: <https://www.cnblogs.com/lialong1st/p/8297928.html>
271+
* Android battery saver 简单记录: <https://blog.csdn.net/huibin147852369/article/details/135917427>
272+
* Android 电池分析工具: <https://www.cnblogs.com/wx2017/p/10914557.html>
273+
* 功耗优化 · 方案篇 · Android功耗优化指导规范: <https://juejin.cn/post/7201364247502078013>
257274

258275
### Alarm
259276

@@ -291,10 +308,14 @@ Android开发者网站包含了以下内容:
291308
* PendingIntent重定向:一种针对安卓系统和流行App的通用提权方法——BlackHat EU 2021议题详解 (下): <https://segmentfault.com/a/1190000041550819>
292309
* 对于android.intent.action.MAIN和android.intent.category.LAUNCHER的理解: <http://blog.csdn.net/lindroid20/article/details/51993247>
293310
* Android DeepLink使用: <https://blog.csdn.net/qq_34681580/article/details/113870059>
311+
* PendingIntent: <https://blog.csdn.net/u011279649/article/details/52081441>
294312

295313
### PMS
296314

297315
* Android 权限的一些细节: <http://blog.csdn.net/u013553529/article/details/53167072>
316+
* Android深入理解包管理--共享库模块: <https://blog.csdn.net/niurenwo/article/details/142798429>
317+
* Android资源管理中的SharedLibrary和Dynamic Reference-------之资源共享库(一): <https://blog.csdn.net/dayong198866/article/details/95226237>
318+
* Android App Bundle 技术介绍及详细使用教程: <https://blog.csdn.net/liaoshemeng8432/article/details/136092415>
298319

299320
### 多用户支持
300321

@@ -318,6 +339,7 @@ Android开发者网站包含了以下内容:
318339
* AIDL interface between Java and C++: <https://stackoverflow.com/questions/65284392/aidl-interface-between-java-and-c>
319340
* 理解 Android Binder 机制(三):Java层: <https://www.cnblogs.com/roger-jc/p/12720366.html>
320341
* Android10_原理机制系列_Binder机制: <https://www.cnblogs.com/fanglongxiang/p/13466204.html>
342+
* Android 11 的PropertyInvalidatedCache机制: <https://juejin.cn/post/6983589650858246158>
321343

322344
### Service
323345

@@ -426,6 +448,8 @@ Android开发者网站包含了以下内容:
426448
* Protobuf语法指南(proto2): <https://blog.csdn.net/qq_22660775/article/details/89044538>
427449
* Android中的StatsLog: <https://blog.csdn.net/ho_mgx/article/details/113486753>
428450
* Statsd In android 9 (2): <https://maplestorys.github.io/2018/12/19/Statsd-In-android-9-2/>
451+
* Android 埋点信息分析——statsd框架: <https://blog.csdn.net/shift_wwx/article/details/140711027>
452+
* FrameworkStatsLog: <https://blog.csdn.net/li_5033/article/details/131812011>
429453

430454
### 文本分类
431455

0 commit comments

Comments
 (0)