安卓github上好的开源项目地址
前面自己接了一个安卓的私活,主要是为了练练手,UI方面用了不少开源控件来实现。在这里记录一下
工具类
ButterKnife
地址:https://github.com/JakeWharton/butterknife
要是写findViewById写的烦了怎么办,用这个吧,简单方便通过java标签的方法。不仅仅支持Activity中使用,也支持fragment,adapter等。
universal image loader/ volley
UIL地址:https://github.com/nostra13/Android-Universal-Image-Loader
volley地址:https://github.com/mcxiaoke/android-volley
主要是用来加载图片用的,当然这里面还依赖到volley,volley是一个著名的网络请求库,用来处理异步请求很不错。
文件上传
地址:https://github.com/gotev/android-upload-service
主要用这个来实现HttpMutiPart协议,还支持回调,监听上传进度。使用也很简单。
自定义相册
地址:https://github.com/pengjianbo/GalleryFinal
有自定义相册、拍照、选择图片的功能,同时还支持编辑,比如裁剪旋转等。如果应用需要访问照片,是个不错的使用选择。
UI类
listview动画效果
地址:https://github.com/nhaarman/ListViewAnimations
可以轻松实现动画效果,比如跳入、飞入的item的listview,使用简单,算是一个比较炫酷的效果吧。
通知dialog效果
地址:https://github.com/pedant/sweet-alert-dialog
要是所有的消息通知都用Toast的话,肯定很不美观。通过这个alert-dialog交互,可以使你的应用快速具有material design风格。
侧边菜单
地址:https://github.com/SpecialCyCi/AndroidResideMenu
侧边菜单的效果,通过侧边滑动出现的有3D效果的菜单。比安卓本来的drawer好看很多。
地址选择、时间选择菜单
地址:https://github.com/gzu-liyujiang/AndroidPicker
类似ios选择栏的那种选择菜单,可以轻松实现各种选择框,比如年月日、省市区等三级联动选择。
IOS风格简单选择菜单
地址:https://github.com/baoyongzhang/android-ActionSheet
从下面弹出的IOS风格的菜单。样式不错,使用起来略微麻烦
欢迎界面图片轮播banner
地址:https://github.com/bingoogolapple/BGABanner-Android
一般刚进入一个应用时有一个图片的轮播,也叫splash,这是一个具有动画效果的splash实现。
悬浮在listview上的按钮
地址:https://github.com/makovkastar/FloatingActionButton
上下滑动listview时,按钮会相应的显示、隐藏,具有渐变动画效果。
圆形的imageview
地址:https://github.com/hdodenhof/CircleImageView
显示用户头像时使用的,可以将图片缩放裁剪为圆形,视觉效果不错。