Skip to content

Commit d3b7f99

Browse files
committed
update
1 parent 5d95eba commit d3b7f99

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

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

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@ Android开发者网站包含了以下内容:
180180
* Android Input概念(getevent -ltr): <https://juejin.cn/post/7294147620914036786>
181181
* Android的触控重采样算法: <https://blog.csdn.net/marshal_zsx/article/details/105902296>
182182
* Android Systrace 基础知识 - Input 解读: <https://androidperformance.com/2019/11/04/Android-Systrace-Input/>
183+
* 按键字符映射文件: <https://source.android.google.cn/docs/core/interaction/input/key-character-map-files>
184+
* 点按劫持: <https://developer.android.google.cn/privacy-and-security/risks/tapjacking>
185+
* Untrusted Touch Events in Android: <https://medium.com/androiddevelopers/untrusted-touch-events-2c0e0b9c374c>
183186

184187
### 组合键
185188

@@ -194,6 +197,8 @@ Android开发者网站包含了以下内容:
194197
* 处理输入法可见性: <https://developer.android.com/develop/ui/views/touch-and-input/keyboard-input/visibility>
195198
* 安卓用户如何避免输入法窃取隐私?<https://www.zhihu.com/question/397007766>
196199
* 触控笔输入简介: <https://developer.android.google.cn/develop/ui/compose/touch-input/stylus-input>
200+
* 深入探索安卓Android输入法开发——从源码到实现: <https://blog.csdn.net/weixin_42612405/article/details/148573318>
201+
* Android输入法框架系统(上): <https://blog.csdn.net/ITleaks/article/details/27398453>
197202

198203
### 手势导航
199204

@@ -222,11 +227,15 @@ Android开发者网站包含了以下内容:
222227
### Accessibility
223228

224229
* Android AccessibilityService机制源码解析: <https://juejin.cn/post/6844903623013597198>
230+
* Android 9.0源码学习-AccessibilityManager: <https://blog.csdn.net/u011391629/article/details/83343312>
231+
* AccessibilityService分析与防御: <https://blog.csdn.net/u010255127/article/details/79184399>
225232
* ContentCaptureManager: <https://developer.android.com/reference/android/view/contentcapture/ContentCaptureManager>
226233
* Android Accessibility – Making your app Switch Access Compatible: <https://riggaroo.dev/android-accessibility-switch-access/>
227234
* 让应用使用起来更没有障碍: <https://developer.android.google.cn/guide/topics/ui/accessibility/apps>
228235
* 使用 Jetpack Compose 改进应用的无障碍功能: <https://developer.android.com/develop/ui/compose/accessibility>
229236
* Android 无障碍服务导致的整机卡顿案例分析: <https://androidperformance.com/2019/01/21/android-performance-case-jank-accessbility/>
237+
* 创建自己的无障碍服务: <https://developer.android.com/guide/topics/ui/accessibility/service>
238+
* 从源码角度看AccessibilityService: <https://www.liuhaihua.cn/archives/523292.html>
230239

231240
### 电源管理
232241

@@ -244,6 +253,9 @@ Android开发者网站包含了以下内容:
244253
* Android R PowerManagerService模块(2) WakeLock机制: <https://juejin.cn/post/6947092185930350622>
245254
* Extra Dim in Android 12: <https://gadgetguideonline.com/android/extra-dim-in-android-12-the-definite-guide/>
246255
* Resume-on-Reboot: <https://source.android.com/docs/core/ota/resume-on-reboot>
256+
* Android 8.1 DisplayPowerController(二) Proximity Sensor的亮灭屏: <https://blog.csdn.net/fightfightfight/article/details/81460803>
257+
* 使屏幕保持开启状态: <https://developer.android.google.cn/develop/background-work/background-tasks/awake/screen-on>
258+
* DreamService: <https://developer.android.com/reference/android/service/dreams/DreamService>
247259

248260
### 开机动画
249261

@@ -283,6 +295,7 @@ Android开发者网站包含了以下内容:
283295
* How to read "adb shell dumpsys alarm" output: <https://stackoverflow.com/questions/28742884/how-to-read-adb-shell-dumpsys-alarm-output>
284296
* android后台执行定时任务(保活)&&使用AlarmManager的各种坑: <https://blog.csdn.net/u013095264/article/details/91880916>
285297
* Schedule alarms: <https://developer.android.google.cn/develop/background-work/services/alarms/schedule?hl=en>
298+
* Android Alarm Manager Workflow: <https://cwgoover.github.io/2016/07/12/android-alarmManager-analyse/>
286299

287300
### 剪贴板框架
288301

@@ -385,6 +398,7 @@ Android开发者网站包含了以下内容:
385398

386399
* Perfetto: <https://perfetto.dev/>
387400
* PerfettoUI: <https://ui.perfetto.dev/#!/>
401+
* Heap profiler: <https://perfetto.dev/docs/data-sources/native-heap-profiler>
388402

389403
* TraceView(已弃用): <https://developer.android.com/studio/profile/traceview>
390404
* Android性能优化—TraceView的使用: <https://www.jianshu.com/p/7e9ca2c73c97>
@@ -411,6 +425,11 @@ Android开发者网站包含了以下内容:
411425
* Android内存优化(使用SparseArray和ArrayMap取代HashMap):<https://www.cnblogs.com/yjbjingcha/p/7074266.html>
412426
* Android-->iostat(显示CPU和IO系统负载情况): <https://blog.csdn.net/angcyo/article/details/51104326>
413427
* Android 15 适配之16K Page Size :为什么它会是最坑的一个适配点: <https://blog.csdn.net/ZuoYueLiang/article/details/140270258>
428+
* 缓存的应用冻结器: <https://source.android.google.cn/docs/core/perf/cached-apps-freezer>
429+
430+
* Shallow Size和Retained Size详解 - 简书: <https://www.jianshu.com/p/851b5bb0a4d4>
431+
* 捕获堆转储  |  Android Studio  |  Android Developers: <https://developer.android.google.cn/studio/profile/capture-heap-dump?hl=zh-cn>
432+
* Inspect traces  |  Android Studio  |  Android Developers: <https://developer.android.google.cn/studio/profile/inspect-traces>
414433

415434
### 动效
416435

@@ -480,6 +499,7 @@ Android开发者网站包含了以下内容:
480499

481500
### Sensor
482501

502+
* Android Sensor软件架构分析: <https://www.cnblogs.com/force-with-u/p/5640083.html>
483503
* Android 4.4 Kitkat Phone工作流程浅析(十一)__PSensor工作流程浅析: <https://blog.csdn.net/yihongyuelan/article/details/43449851>
484504
* SensorPrivacyManager
485505

@@ -488,6 +508,7 @@ Android开发者网站包含了以下内容:
488508
* 触感反馈: <https://source.android.google.cn/docs/core/interaction/haptics>
489509
* 在 Android 上实现触感反馈: <https://developer.android.com/develop/ui/views/haptics>
490510
* UX foundation for haptic framework: <https://source.android.google.cn/docs/core/interaction/haptics/haptics-ux-foundation>
511+
* Android Vibrator 分析:从 App 层到 HAL 层: <https://juejin.cn/post/7451418558770626595>
491512

492513
### WebView
493514

@@ -517,6 +538,8 @@ Android开发者网站包含了以下内容:
517538
* Android FRP功能分析(Factory Reset Protection): <https://mabin004.github.io/2018/07/25/Android-FRP%E5%8A%9F%E8%83%BD%E5%88%86%E6%9E%90%EF%BC%88Factory-Reset-Protection%EF%BC%89/>
518539
* Android 中的安全增强型 Linux: <https://source.android.google.cn/docs/security/features/selinux?hl=zh-cn>
519540
* Private space: <https://source.android.com/docs/security/features/private-space>
541+
* 剖析Android的Smart Lock: <https://blog.csdn.net/Invoker123/article/details/86489090>
542+
* 支持“直接启动”模式: <https://developer.android.google.cn/privacy-and-security/direct-boot>
520543

521544
### 硬件
522545

@@ -669,14 +692,11 @@ Android开发者网站包含了以下内容:
669692
* KwaiAppTeam/KOOM: KOOM is an OOM killer on mobile platform by Kwai.: <https://github.com/KwaiAppTeam/KOOM>
670693
* 西瓜视频稳定性治理体系建设一:Tailor 原理及实践-CSDN博客: <https://blog.csdn.net/ByteDanceTech/article/details/111189304>
671694
* Code Review:提升代码质量与团队能力的利器_cr-mentor ai codereview mentor-CSDN博客: <https://blog.csdn.net/jdcdev_/article/details/145198657>
672-
* Shallow Size和Retained Size详解 - 简书: <https://www.jianshu.com/p/851b5bb0a4d4>
673-
* 捕获堆转储  |  Android Studio  |  Android Developers: <https://developer.android.google.cn/studio/profile/capture-heap-dump?hl=zh-cn>
674695
* Restrictions on starting activities from the background  |  App architecture  |  Android Developers: <https://developer.android.google.cn/guide/components/activities/background-starts>
675696
* ADB架构解析-CSDN博客: <https://blog.csdn.net/viewsky11/article/details/53889143>
676697
* 添加系统属性  |  Android Open Source Project: <https://source.android.google.cn/docs/core/architecture/configuration/add-system-properties?hl=zh-cn>
677698
* The Ultimate List of Best Software Architecture Books (2025) 📗: <https://www.workingsoftware.dev/the-ultimate-list-of-software-architecture-books/>
678699
* 最佳软件架构书籍终极清单 (2024) - PetterLiu - 博客园: <https://www.cnblogs.com/wintersun/p/18032122>
679-
* Inspect traces  |  Android Studio  |  Android Developers: <https://developer.android.google.cn/studio/profile/inspect-traces>
680700
* C++之std::forward(完美转发)-CSDN博客: <https://blog.csdn.net/haokan123456789/article/details/134980411>
681701
* (1条消息) Android Framework学习——view的创建(1)_咻比嘟哗丶的博客-CSDN博客: <https://blog.csdn.net/qq_34741451/article/details/103594579>
682702
* Android窗口系统第四篇---Activity动画的设置过程 - 简书: <https://www.jianshu.com/p/c2e48b3e33a0>
@@ -766,6 +786,7 @@ Android开发者网站包含了以下内容:
766786
* 使用 Logcat 查看日志  |  Android Studio  |  Android Developers: <https://developer.android.google.cn/studio/debug/logcat?hl=zh-cn>
767787
* Android新增API之AudioEffect中文API与应用实例-CSDN博客: <https://blog.csdn.net/weixin_34044273/article/details/85473311>
768788
* user-interface-samples/DragAndDrop at main · android/user-interface-samples: <https://github.com/android/user-interface-samples/tree/main/DragAndDrop>
789+
* ExtServices: <https://source.android.google.cn/docs/core/ota/modular-system/extservices>
769790

770791
## Android相关的知识
771792

_posts/the-way-of-learning/2025-05-09-架构师学习之路.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ toc: true
1010
---
1111

1212
本篇文章汇总了架构师学习的相关资源,包括架构师的基本概念、架构设计、架构模式等内容,适合架构师开发者参考。
13+
14+
* [方法论]技术洞察细节以及案例分享: <https://blog.csdn.net/weixin_32393347/article/details/144053007>

0 commit comments

Comments
 (0)