赞
踩
使用:
compile ‘com.alibaba:fastjson:1.1.58.android’
20.Material-Animations
一句话介绍:一款提供场景转换过渡能力的动画框架
上榜理由:Android动画框架排行榜第二 名,9.3k个star数量,与动画框架榜单第一名lottie-android不同的是,Material-Animations提供的是场景切换的动 画效果。Android 官网sample中已经提供了部分Transition (转场动画)的展示,作为初学者很难快速拓展到自己项目中,Material-Animations的示例出现为开发者省去了此类麻烦,直接照搬应用到自 己的App中吧。
github https://github.com/lgvalle/Material-Animations
作者:Luis G. Valle
使用:
down源码,修改学习
21.tinker
一句话介绍:它是微信官网的Android热补丁解决方案
上榜理由:9.1k个star,微信在用的热补丁方案,心动不如行动
官网地址 http://www.tinkerpatch.com/Docs/intro
github https://github.com/Tencent/tinker
作者:Tencent
22.ViewPagerIndicator
一句话介绍:一款基于ViewPager的页面指示器开源框架
上榜理由:上古神器,尽管已经五年未更新了,但你仍然可以在淘宝等app中看到它的使用场景,8.9K的star量让它不愠不火的在矗立在榜单里
官网地址 http://viewpagerindicator.com/
github https://github.com/JakeWharton/ViewPagerIndicator
作者:JakeWharton
使用:
下载 地址 https://github.com/JakeWharton/Android-ViewPagerIndicator/zipball/master
23.Android-CleanArchitecture
一句话介绍:一个讲解设计框架的demo
上榜理由:它不是框架,你可以把它当作一本书,它将教会你如何设计简洁的架构,工程里有一个sample app,配合图文讲解,你将对Android客户端的架构有更深一层的认识。8.8k的star数量,证明了它是一本“好书”哟。
github https://github.com/android10/Android-CleanArchitecture
作者:Fernando Cejas
24…Android-PullToRefresh
一句话介绍:一款为普通视图提供刷新UI的视图框架
上榜理由:8.2K的star数量使它位居刷 新类UI框架榜首,强大的兼容能力,该框架支持ListView,GrdiView,WebViewScrollView,ViewPager等众多 View增加刷新的能力,如果你有增加上拉加载,下拉加载的需求,你应该考虑它了!
github https://github.com/chrisbanes/Android-PullToRefresh
作者:Chris Banes
使用:
github fork源码,集成到项目中
25.flexbox-layout
一句话介绍:一款弹性伸缩布局
上榜理由:8.1k个star,前端H5开发者转Android开发的福音,FlexboxLayout作为LinearLayout和RelativeLayout的替代者,值得各位一试,与其一同推出的还有ConstraintLayout。
github https://github.com/google/flexbox-layout
作者:Google
使用:
dependencies {
compile ‘com.google.android:flexbox:0.3.0-alpha3’
}
26.AndroidSwipeLayout
一句话介绍:非常强大滑动式布局
上榜理由:滑动删除是国产app常见需求,商品详情的上下滑动需求作为开发者的我们也经常遇到,AndroidSwipeLayout在github上拥有8K个star,证明它经受住了检验,各位值得一试
github https://github.com/daimajia/AndroidSwipeLayout
作者:daimajia
使用:
dependencies {
compile ‘com.android.support:recyclerview-v7:21.0.0’
compile ‘com.android.support:support-v4:20.+’
compile “com.daimajia.swipelayout:library:1.2.0@aar”
}
27.realm-java
一句话介绍:Realm是一款移动端数据库框架
上榜理由:核心数据引擎C++打造,比普通的Sqlite型数据库快的多。笔者猜测正是如此,realm以7892个star数让它位于大名鼎鼎的数据库框架GreenDao(7877)之前
官网地址:https://realm.io/cn/
github https://github.com/realm/realm-java
作者:Realm团队
使用:https://realm.io/docs/java/latest/
28.greenDAO
一句话介绍:greenDAO是一款高效、快速的SQLite型数据库
上榜理由:greenDAO的star数量与 Realm不相上下,且与EventBus师出同门,也是由greenrobot团队开发维护的,质量有所保证,但若拷问笔者Realm与 greenDao两者的优劣性,只能具体到实际使用当中,模拟线上的使用情形,进行高强度测试后才能下判断,故在此不能一言两语说完,深表遗憾
官网地址:http://greenrobot.org/greendao/
github https://github.com/greenrobot/greenDAO
使用:
复制代码
buildscript {
repositories {
jcenter()
mavenCentral() // add repository
}
dependencies {
classpath ‘com.android.tools.build:gradle:2.3.1’
classpath ‘org.greenrobot:greendao-gradle-plugin:3.2.2’ // add plugin
}
}
apply plugin: ‘com.android.application’
apply plugin: ‘org.greenrobot.greendao’ // apply plugin
dependencies {
compile ‘org.greenrobot:greendao:3.2.2’ // add library
}
29.stetho
一句话介绍:一款提供在Chrome开发者工具上调试Android app能力的开源框架
上榜理由:上古时期Android程序员要调 试本地数据库,需要进入Android Device Monitor找到/data/data/com.xxx.xxx/databases里面的db文件,导出到PC端,用PC的数据工具查看,现在使用 stetho省却了如此的麻烦;如今的Android程序员如果想调试网络请求响应过程中的报文段,需要在请求中加入Log语句,一个信息一个信息打印出 来,相当繁琐,现在请使用stetho,省却诸如此类的麻烦把!7.8K个star数,广大Android开发者调试的福音,你值得拥有!
作者:FaceBook
官网地址: http://facebook.github.io/stetho/
github https://github.com/facebook/stetho
使用:
compile ‘com.facebook.stetho:stetho:1.5.0’
30.BaseRecyclerViewAdapterHelper
一句话介绍:强大、流畅的Recyvlerview通用适配器
上榜理由:如果你是RecyclerView的拥簇者,你一定要体验这款专门服务该view的适配器,7.7K个star,让这个家伙位于github上Android 适配器排行榜第一,还有很多惊喜等你去探寻!
官网地址:http://www.recyclerview.org/
作者:陈宇明以及他的小伙伴
使用:
allprojects {
repositories {
…
maven { url “https://jitpack.io” }
}
}
dependencies {
compile ‘com.github.CymChad:BaseRecyclerViewAdapterHelper:VERSION_CODE’
}
31.AndroidViewAnimations
一句话介绍:一款提供可爱动画集合的框架
上榜理由:正如作者所说,它囊括了开发需求过 程中所有的动画效果,集成进了这个简洁可爱的动画框架。7.6K的star数,证明了它在动画框架领域的战斗力,让它仅仅位列lottie- android和Material-Animations两个动画框架霸主之后,屈居第三名
github https://github.com/daimajia/AndroidViewAnimations
作者:daimajia
使用:
dependencies {
compile ‘com.android.support:support-compat:25.1.1’
compile ‘com.daimajia.easing:library:2.0@aar’
compile ‘com.daimajia.androidanimations:library:2.2@aar’
}
sample:
YoYo.with(Techniques.Tada)
.duration(700)
.repeat(5)
.playOn(findViewById(R.id.edit_area));
32. MaterialDrawer
一句话介绍:强大的塑料风格的抽屉框架
上榜理由:7.6K的star数量,作者的持续更新状态,如果你还在犹豫上手SlidingMenu遇到bug没人管的困境,那么你可以入手它作为你的抽屉布局
github https://github.com/mikepenz/MaterialDrawer
作者:Mike Penz
使用:
compile(‘com.mikepenz:materialdrawer:5.9.2@aar’) {
transitive = true
}
new DrawerBuilder().withActivity(this).build();
33.Android-ObservableScrollView
一句话介绍:一款让视图滑动更具有视觉效果的滑动式框架
上榜理由:7.5K的star数量,证明了它曾经的价值,github上提供了12种滑动效果,你可以用它弥补其他框架的不足,提升你的App体验!
github https://github.com/ksoichiro/Android-ObservableScrollView
作者:Soichiro Kashima
使用:
compile com.github.ksoichiro:android-observablescrollview
34.CircleImageView
一句话介绍:圆角ImageView
上榜理由:也许你已经听说过无数种展示圆角图片的方法,但如果你不尝试尝试CircleImageView,那么你的知识库会因为少了它黯然失色,有的时候完成需求是开发者优先考虑的,不同实现方法牵扯到的性能差异更值得让人深思,如果你有心在图片性能上有所涉猎,那么CircleImageView绝对不会让你败兴而归。最后别忘了记得去看Romain Guy的建议哟。
github https://github.com/hdodenhof/CircleImageView
作者:Henning Dodenhof
使用:
dependencies {
…
compile ‘de.hdodenhof:circleimageview:2.1.0’
}
<de.hdodenhof.circleimageview.CircleImageView
xmlns:app=“http://schemas.android.com/apk/res-auto”
android:id=“@+id/profile_image”
android:layout_width=“96dp”
android:layout_height=“96dp”
android:src=“@drawable/profile”
app:civ_border_width=“2dp”
app:civ_border_color=“#FF000000”/>
35.logger
一句话介绍:一款让log日志优雅显示的框架
上榜理由:logger作为调试框架,并未给 出很强大的能力,它最大的亮点是优雅的输出log信息,并且支持多种格式:线程、Json、Xml、List、Map等,如果你整日沉迷于汪洋大海般的 log信息不能自拔,logger就是你的指路明灯!6.6k个star让他位列调试框架第二名,屈居facebook的stetho之后
github https://github.com/orhanobut/logger
作者:Orhan Obut
使用:
compile ‘com.orhanobut:logger:2.1.1’
Logger.d(MAP);
Logger.d(SET);
Logger.d(LIST);
Logger.d(ARRAY);
Logger.json(JSON_CONTENT);
Logger.xml(XML_CONTENT);
36.agera
一句话介绍:一款服务于Android平台的响应式编程框架
上榜理由:google专门推出一套响应式编 程框架服务于Android开发者,相比于之响应式编程框架榜首的 RxJava RxAndroid,它更轻量,两者最大的不同点在于agera基于push event、pull data (VS Rx系列 push data)。
github https://github.com/google/agera
作者:Google
使用:
compile ‘com.google.android.agera:agera:1.3.0’
扩展能力
compile ‘com.google.android.agera:content:1.3.0’
compile ‘com.google.android.agera:database:1.3.0’
compile ‘com.google.android.agera:net:1.3.0’
compile ‘com.google.android.agera:rvadapter:1.3.0’
compile ‘com.google.android.agera:rvdatabinding:1.3.0’
37.BottmBar
一句话介绍:一款底部导航栏视图框架
上榜理由:底部栏里的王者框架,6.3K的 star数量,证明了它的优秀,完全遵循材料设计规范,上手非常方便。如果说缺点,无法设置icon与titile的间距,无法自定义视图的大小等,但这 些都可以通过修改源代码解决,笔者献丑也修改了一套符合国内开发者的底部导航框架,即将开源。
github https://github.com/roughike/BottomBar
作者:Iiro Krankka
使用:
compile ‘com.roughike:bottom-bar:2.3.1’
38.Calligraphy
一句话介绍:一款自定义字体框架
上榜理由:如果你还在为一键修改App内所有字体样式而烦恼,6.3K个star的Calligraphy就值得你拥有,它可以同时修改整个整个项目的Textview字体,也可以单独 设置某个Textview的字体,还在等什么,快来试试吧!
github https://github.com/chrisjenx/Calligraphy
作者:Christopher Jenkins
使用:
dependencies {
compile ‘uk.co.chrisjenx:calligraphy:2.3.0’
}
39.AndroidSlidingUpPanel
一句话介绍:可拖动的滑动面板视图框架
上榜理由:如果你的项目需要一个可拖拽的滑动式面板(展示某些详情信息,播放音乐,地图信息等),那么推荐你使用它,6.3k个star,来自创业公司umano的作品,证明它是用心推出的杰作
github https://github.com/umano/AndroidSlidingUpPanel
作者:umano
使用:
dependencies {
repositories {
mavenCentral()
}
compile ‘com.sothree.slidinguppanel:library:3.3.1’
}
40.AppIntro
一句话介绍:一款提供快速制作欢迎页的框架
上榜理由:笔者从未把打算把欢迎页框架纳入排 行榜当中,作为国内开发者,ViewPager开发App的欢迎页已经是手到擒来的需求,为何一个开源的欢迎页框架会在github上拥有6.3k个 star?也许你会不屑一顾,是的,往往就在不屑一顾的瞬间,机遇就悄悄溜走了。
github https://github.com/apl-devs/AppIntro
作者:Paolo Rotolo
allprojects {
repositories {
…
maven { url ‘https://jitpack.io’ }
}
}
dependencies {
compile ‘com.github.apl-devs:appintro:v4.2.0’
}
41.recyclerview-animators
一句话介绍:一款为Recyclerview提供扩展动画能力的框架
上榜理由:有一句老话:如果有天你失去对新事 物的兴趣,那就说明你老了。recyclerview已经推出快三年了,还在用listview的人们,是否已经发掘自己渐渐变老;不要灰心,快为你的项 目加入recyclerview-animators框架吧,为“自己”加入新鲜的血液和能量!(笔者备注:6.2K个star)
github https://github.com/wasabeef/recyclerview-animators
作者;https://github.com/wasabeef
使用:
dependencies {
// jCenter
compile ‘jp.wasabeef:recyclerview-animators:2.2.6’
}
42.dagger
一句话介绍:一款通过依赖注入降低程序间耦合的开发框架
上榜理由:github 上dagger1版本 有6.2k个star , dagger2版本有7.3k个;由square完成的dagger1版本,到如今google团队接手的dagger2版本,强力开发团队保证了代码在 设计上的优越性;如果你想探究Android 领域的设计模式,这也是不错的选择。
官网地址:https://google.github.io/dagger/
github :https://github.com/google/dagger
作者:google
使用:
dependencies {
compile ‘com.google.dagger
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。