Android常用工具类、开源库、jar等

Android常用工具类、开源库、jar等_第1张图片
beauty.jpg

各类开源库搜索地址:http://mvnrepository.com/

1.https://github.com/wyouflf/xUtils3

// https://mvnrepository.com/artifact/org.xutils/xutils  
//xUtils 包含了orm, http(s), image, view注解等
compile 'org.xutils:xutils:3.5.0'  

2.https://github.com/google/gson

// https://mvnrepository.com/artifact/com.google.code.gson/gson  
//json、model相互转化
compile 'com.google.code.gson:gson:2.8.1'  

3.https://github.com/square/picasso

// https://mvnrepository.com/artifact/com.squareup.picasso/picasso  
//图片加载
compile 'com.squareup.picasso:picasso:2.5.2'  

4.https://github.com/greenrobot/EventBus

// https://mvnrepository.com/artifact/de.greenrobot/eventbus  
//用于界面通信:值传递、通知等
compile 'de.greenrobot:eventbus:2.4.1'  

5.https://github.com/CymChad/BaseRecyclerViewAdapterHelper

//顾名思义
compile 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.33'  

6.ECharts - Java类库 http://git.oschina.net/free/ECharts

//https://mvnrepository.com/artifact/com.github.abel533/ECharts  
compile group: 'com.github.abel533', name: 'ECharts', version: '3.0.0.2'  

7.https://github.com/tikeyc/TNinePlaceGridView_Android

//九宫格
compile 'com.github.tikeyc.TNinePlaceGridView_Android:tnineplacegridviewlibrary:v1.1.1'  

8.https://github.com/tikeyc/TAndroidEChart

//根据百度前端Echart封装的应用于Android的控件
compile 'com.github.tikeyc:TAndroidEChart:v1.0'  

9.https://github.com/lingochamp/FileDownloader

//文件下载  
compile 'com.liulishuo.filedownloader:library:1.6.0'  

10.https://github.com/ittianyu/BottomNavigationViewEx

//底部TabBar  
compile 'com.github.ittianyu:BottomNavigationViewEx:1.2.1'  

11.https://github.com/laobie/StatusBarUtil

//状态栏状态  
compile 'com.jaeger.statusbarutil:library:1.4.0'  

12.https://github.com/ikew0ng/SwipeBackLayout

//类似iOS的滑动返回界面  
compile 'cn.bingoogolapple:bga-swipebacklayout:1.1.4@aar'  

13.上下拉刷新https://github.com/scwang90/SmartRefreshLayout

compile 'com.scwang.smartrefresh:SmartRefreshLayout:1.0.3'  
//没有使用特殊Header,可以不加这行  
compile 'com.scwang.smartrefresh:SmartRefreshHeader:1.0.3'  

14.https://github.com/pengwei1024/LogUtils

//日志输出
compile 'com.apkfuns.logutils:library:1.5.1.1'  

15.https://github.com/lipangit/JiaoZiVideoPlayer

// https://mvnrepository.com/artifact/fm.jiecao/jiecaovideoplayer  
//播放视频
compile group: 'fm.jiecao', name: 'jiecaovideoplayer', version: '5.8.1'  

16.https://github.com/koral--/android-gif-drawable

// https://mvnrepository.com/artifact/pl.droidsonroids.gif/android-gif-drawable  
//Gif动画
compile group: 'pl.droidsonroids.gif', name: 'android-gif-drawable', version: '1.2.8'  

17.https://github.com/bumptech/glide

// https://mvnrepository.com/artifact/com.github.bumptech.glide/glide  
//图片加载
compile group: 'com.github.bumptech.glide', name: 'glide', version: '3.7.0' 

18.https://github.com/youth5201314/banner

//图片轮播控件 https://github.com/youth5201314/banner
 compile 'com.youth.banner:banner:1.4.10'

19.https://github.com/jjdxmashl/jjdxm_ijkplayer

//集合了B站视频播放,集合可以播放任何类型的视频https://github.com/jjdxmashl/jjdxm_ijkplayer
compile 'com.dou361.ijkplayer:jjdxm-ijkplayer:1.0.6'

20.https://github.com/jjdxmashl/jjdxm_baseutils

//集合了很多的常用工具类https://github.com/jjdxmashl/jjdxm_baseutils
compile 'com.dou361.baseutils:jjdxm-baseutils:1.0.6'

21.https://github.com/Blankj/AndroidUtilCode

//集合了很多的常用工具类https://github.com/Blankj/AndroidUtilCode
compile 'com.blankj:utilcode:1.9.8'

22.https://github.com/airbnb/lottie-android
lottie-ios: https://github.com/airbnb/lottie-ios
lottie-android: https://github.com/airbnb/lottie-android
React Native: https://github.com/airbnb/lottie-react-native

//Lottie 是 Airbnb 开发的一款能够为原生应用添加动画效果的开源工具。
//Lottie 目前提供了 iOS, Android, 和 React Native 版本,能够实时渲染After Effects动画特效。
compile 'com.airbnb.android:lottie:2.3.1'

你可能感兴趣的:(Android常用工具类、开源库、jar等)