Skip to content

Latest commit

 

History

History
86 lines (71 loc) · 3.92 KB

File metadata and controls

86 lines (71 loc) · 3.92 KB

Android Developer Notes


GitHub 10000-Star Android Open-Source Frameworks

ADB, otherwise known as Android Debug Bridge, is a developer tool that lets you send commands to an Android device you’ve connected to your computer. It’s a fairly advanced tool, and you run it through the command line on your PC or Mac, but if you ever want to install, say, a developer preview release of Android on your phone, you’ll need to delve into ADB. ......

Android提供了四种常用的操作多线程的方式,分别是:

  1. Handler+Thread
  2. AsyncTask
  3. ThreadPoolExecutor
  4. IntentService

SQLite是Android平台软件开发中会经常用到的数据库产品,作为一款轻型数据库,SQLite的设计目标就是是嵌入式的,而且目前已经在很多嵌入式产品中使用了它,它占用资源非常的低,在嵌入式设备中,可能只需要几百K的内存就够。下面我们一起来看看针对Android平台的SQlite 3的使用。

Gradle for Android 第一篇( 从 Gradle 和 AS 开始 )
Gradle for Android 第二篇( Build.gradle入门 )
Gradle for Android 第三篇( 依赖管理 )
Gradle for Android 第四篇( 构建变体 )
Gradle for Android 第五篇( 多模块构建 )
Gradle for Android 第六篇( 测试)
Gradle for Android 第七篇( Groovy入门 )

  1. 网络请求
  2. JSON解析
  3. 响应式编程
  4. 事件总线
  5. 性能优化/内存检测
  6. 网页数据抓取/Html解析
  7. 图片加载
  8. 图片处理
  9. 数据库
  10. 依赖注入
  11. 图表
  12. 热修复/插件化框架
  13. View
  14. 视频框架
  15. 测试框架
  16. 缓存
  17. Log框架
  18. 调试框架
  19. 后台处理
  1. Handler
  2. AlarmManager
  3. Job Scheduler
  4. GCM(FCM)
  5. Sync Adapter
  6. Doze Mode
  7. Background Limit - Android O

Android进程保活专题

  1. Android进程保活招式大全
  2. Android进程保活的一般套路