Android Weekly笔记
更新日期:
文章目录
看过的东西一定要做笔记!无笔记等于白看。这个笔记我会坚持持续更新。
- 195期
- MODEL VIEW PRESENTER (MVP) IN ANDROID, PART 1 讲述什么是MVP模式以及MVP和MVC之间的不同之处。 http://www.tinmegali.com/en/model-view-presenter-android-part-1/?utm_source=Android+Weekly&utm_campaign=36def426b1-Android_Weekly_195&utm_medium=email&utm_term=0_4eb677ad19-36def426b1-337977553
- 184期
- android-s-multidex-slows-down-app-startup https://medium.com/groupon-eng/android-s-multidex-slows-down-app-startup-d9f10b46770f#.rjzelys9a apk方法数超过65k,android5.0之前默认不支持的,需要使用multidex库才能支持。android5.0以后,ART默认支持。但在使用multidex过程中,会增加app启动时间。这篇文章就是讲述在使用multidex时,如何优化启动时间。
- analyze-manage-android-devices-memory-allocation-through-ddms-mat https://acadgild.com/blog/analyze-manage-android-devices-memory-allocation-through-ddms-mat/ 介绍Android开发中,1,如何避免内存泄露:避免长时间持有Activity的Context引用;尽可能用ApplicationContext代替Activity的Context;避免使用内部类,尽可能使用静态内部类,并且静态内部类对Activity的引用设为弱引用;垃圾收集器不能避免内存溢出。2,使用Allocation Tracker和MAT分析内存使用和泄露状况。
- 182期
- effective-okhttp http://omgitsmgp.com/2015/12/02/effective-okhttp/ 讲述高效使用okhttp库。
- 181期
- 图片裁剪库,scissors,由lyft公司发布。 https://eng.lyft.com/scissors-an-image-cropping-library-for-android-a56369154a19#.7amvfosbr github地址:https://github.com/lyft/scissors
- 178期
- 定制windows background,使app在冷启动时,看起来更快。https://plus.google.com/105148560373589648355/posts/V3Tp6xxUWHH github地址:https://github.com/DreaminginCodeZH/MaterialColdStart
- 177期
- getting-started-with-rxjava-and-android 入门级介绍如何在android中使用rxjava http://www.captechconsulting.com/blogs/getting-started-with-rxjava-and-android
- android依赖注入入门。 http://tech.just-eat.com/2015/10/26/dependency-injection-on-android/
- 176期
- using-hardware-layers-to-improve-animation-performance 使用hardware layer提高动画的绘制性能 http://blog.danlew.net/2015/10/20/using-hardware-layers-to-improve-animation-performance/
- Build a Material Design App with the Android Design Support Library 介绍如何使用Android Design Support Library开发app。地址:https://codelabs.developers.google.com/codelabs/material-design-style/index.html?index=..%2F..%2Findex#0 谷歌官方博客对Android Design Support Library的使用介绍:http://android-developers.blogspot.co.ke/2015/05/android-design-support-library.html