6.leakcanary一句话介绍:一款内存检测框架,服务于java和android客户端上榜理由:方便,简洁是leakcanary最大的特点,只需在应用的apllication中集成,就可以直接使用它;15.5k个star说明了它有多么受欢迎github https://github.com/square/leakcanary作者 square团队使用: dependencies { debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.4' releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4' testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4' }在 Application 中写入:public class ExampleApplication extends Application { @Override public void onCreate() { super.onCreate(); if (LeakCanary.isInAnalyzerProcess(this)) { // This process is dedicated to LeakCanary for heap analysis. // You should not init your app in this process. return; } LeakCanary.install(this); // Normal app init code... }}
9.zxing一句话介绍:条码图像处理库上榜理由:如果你用过二维码,你肯定已经间接使用过大名鼎鼎的zxing了。13.9K的star量,让它排在本榜单第九,实至名归,如果你有了解二维码的需求,不妨从了解、修改它源码入手。github https://github.com/zxing/zxing作者 Sean Owen
14.SlidingMenu一句话介绍:侧滑菜单栏框架上榜理由:与Userval-Image-loader 齐名的上古神器框架——为你的app提供侧滑菜单栏的功能;github闪更有10.5k个star,证明了它的经久不衰,即使在Google推出了NavigationDrawer,仍然没有减少开发者对SildingMenu的拥簇,经典总是经得起考验的,这个上古神兽已经四年没有更新了;有太多太多的app使用过它,这些都可以在软件的开源许可上看到!github https://github.com/jfeinstein10/SlidingMenu作者 Jeremy Feinstein使用:在gihub上fork源码,集成进项目中
网友评论