OkHttp's configuration list Posted on 2020-04-25 | In Network related Words count in article: 651 字 | Reading time ≈ 4 分钟 OkHttp is the most useful Http library in Android develop,it will help us build a http request and ... Read more »
Encryption, Encoding, Hash Posted on 2020-04-19 | In data basement Words count in article: 407 字 | Reading time ≈ 3 分钟 EncryptionThere are two useful encrypt algorithms, symmetry encryption and asymmetry encryption. Sy ... Read more »
Http's concept、working mechanism and data construction Posted on 2020-04-13 | In Network related Words count in article: 845 字 | Reading time ≈ 5 分钟 Http’s ConceptHttp is a abbreviation of Hypertext Transfer Protocol, it runs in the application lay ... Read more »
deep understand of Android ActivityManagerService Posted on 2019-10-03 | In Books of Deep UnderStand Android Words count in article: 6,367 字 | Reading time ≈ 40 分钟 overviewAndroidManagerService(abbreviation as AMS) is the most vital service of Android, it mainly ... Read more »
深入理解Android:Looper、Handler及MessageQueue Posted on 2019-09-16 | In 深入理解Android系列丛书学习 Words count in article: 1,906 字 | Reading time ≈ 7 分钟 Looper与Handler就应用程序而言,Android程序的应用程序和其他系统上先相同,都是靠消息驱动来工作的,它们大致的工作原理如下: 有一个消息队列,可以往这个消息队列中投递消息。 有一 ... Read more »
深入理解Android:Surface Posted on 2019-09-12 | In 深入理解Android系列丛书学习 Words count in article: 3,936 字 | Reading time ≈ 16 分钟 总体关系Surface是Android中的图像系统,我们将通过以下两点来对它进行学习: 应用程序和Surface的关系 Surface和SurfaceFlinger之间的关系 两个图表明了这 ... Read more »
深入理解Android:Binder Posted on 2019-08-27 | In 深入理解Android系列丛书学习 Words count in article: 8,640 字 | Reading time ≈ 36 分钟 Binder是Android提供给我们的一种跨进程通信方案,Android虽然说是基于Linux内核的,可以使用Linux的管道进行跨进程通信,也可以使用网络的方法(使用Socket)进行跨进程通信 ... Read more »
Android gradle插件基础 Posted on 2019-08-18 | In Android Words count in article: 1,144 字 | Reading time ≈ 5 分钟 在项目的build.gradle文件中,我们可以看到默认的插件是这样的。 123apply plugin: 'com.android.application'apply plugin: 'kotli ... Read more »
Android依赖的多种关键字用法 Posted on 2019-07-28 | In Android Words count in article: 1,463 字 | Reading time ≈ 5 分钟 引入依赖Android是基于gradle进行构建的,我们也通过gradle来引入依赖项,当我们使用Android studio为我们自动得导入依赖时,我们可能会看到在本module的build.gr ... Read more »
Proguard学习及App混淆 Posted on 2019-07-21 | In Android Words count in article: 1,110 字 | Reading time ≈ 4 分钟 proguard-android.txt与proguard-android-optimize.txt当我们打Release的时候,Google会默认对我们的release包进行优化,这个优化是通过在 ... Read more »