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.lxweimin.com/p/345f4d8a5cfa
8.Android開發實現連續跳轉幾個界面后在最后一個界面完美跳回最初的界面
http://blog.csdn.net/u011895534/article/details/47616979
9.Fragment的返回鍵 :http://www.lxweimin.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