2018-01-09Android 开发整理

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(腾讯浏览服务)SDKhttp://blog.csdn.net/weiren1101/article/details/51880898

11.RxJava、RxAndroidhttp://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

你可能感兴趣的:(2018-01-09Android 开发整理)