1、UI相关 请 转 https://github.com/opendigg/awesome-github-android-ui
2、Kotlin学习网站 https://github.com/kotlinandroid/kotlin-for-android
3、各种弹窗提示: http://www.2cto.com/kf/201611/561909.html
4、Android 开发 常用工具类: http://blog.csdn.net/black_dreamer/article/details/69668093
http://blog.csdn.net/sw5131899/article/details/52093447
5、强大的图片处理工具 https://github.com/martin90s/ImagePicker
6.处理Editext被软降盘挡住问题 https://www.2cto.com/kf/201703/615754.html
7.最全面总结 Android WebView与 JS 的交互方式 http://www.jianshu.com/p/345f4d8a5cfa
8.Android开发实现连续跳转几个界面后在最后一个界面完美跳回最初的界面
http://blog.csdn.net/u011895534/article/details/47616979
9.Fragment的返回键 : http://www.jianshu.com/p/fff1ef649fc0
10.混合开发,调用h5使用TBS(腾讯浏览服务)SDK http://blog.csdn.net/weiren1101/article/details/51880898
11.RxJava、RxAndroid http://andoop.github.io/RxJava%E5%92%8CRxAndroid.html
12.根据后台返回的颜色值,动态设置shape边框颜色 http://blog.csdn.net/fallingstar2011/article/details/53707186 1)?xml version="1.0" encoding="utf-8"?2)
在代码中根据需求动态的修改填充色及背景色
//tvBind是我的textview控件,将边线的颜色变成红色,边线宽度2dp
GradientDrawable drawable = (GradientDrawable) tvBind.getBackground();drawable.setStroke(2, getResources().getColor(R.color.mall_red_text));
//改变drawable的背景填充色
drawable.setColor(getResources().getColor(R.color.mall_red_text));
13.七牛直播 https://github.com/pili-engineering/PLDroidMediaStreaming
14.解决ListView下拉刷新时导致图片闪烁问题 http://blog.csdn.net/u010429311/article/details/51146238
15. ZLayoutManager-五行代码实现 炫动滑动 卡片层叠布局
项目地址 https://github.com/mcxtzhang/ZLayoutManager
16. RxPermissions一个强大的6.0运行时权限处理框架
项目地址 https://github.com/tbruyelle/RxPermissions
17. Android-FilePicker-android图片和文档选择器
项目地址 https://github.com/DroidNinja/Android-FilePicker
18.Glide 的简单使用 http://www.cnblogs.com/whoislcj/p/5558168.html
19.小图标 http://www.iconfont.cn/
20. 一个仿大众点评、美团的城市选择器,使用如同Rx一样优雅,并且UI和城市数据可以自定义 https://github.com/yuruizhe/CityPicker
21.RxJava、RxAndroid 学习 http://andoop.github.io/RxJava%E5%92%8CRxAndroid.html#10201
网友评论