└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Android-Tips 2 | 3 | 学习 Android 至今,大大小小的坑没少踩,庆幸的是,在强大的搜索引擎与无私奉献的人们的帮助下,我遇到的坑都顺利地被填平了。 4 | 5 | 为了便于日后在遇到同样的问题时,能免于因再次搜索所带来的麻烦,我养成了收藏书签的习惯,随着书签(Tips)的日积月累,我想,是时候该有这个项目了。 6 | 7 | **如果你是个 Android 新人,又不善于搜索或不知道从何开始,那么我希望这份列表,可以成为你踩到坑时的不完全手册。** 8 | 9 | 当然,这份列表一定会有遗漏,如果不幸,这里没有你所踩到的坑,或者对于某个问题你有更好的 Tips,欢迎与大家分享,让我们一起来维护这个项目! 10 | 11 | 你可以通过 [Pull requests](https://github.com/tangqi92/Android-Tips/pulls) 的形式进行提交,当然也欢迎 `Star` 与 `Fork` :) 12 | 13 | >由于本项目面向的群体为初学者,所以列表的知识点以初级为主,资源大多数为中文,如遇到少数无法访问的情况,请自备梯子。 14 | 15 | --- 16 | 17 | ## A 18 | 19 | ### ADB 20 | 21 | 1. [Android ADB常用命令](http://segmentfault.com/a/1190000000426049) 22 | 2. [Android开发调试工具ADB的使用](http://www.cnblogs.com/meil/archive/2012/05/24/2516055.html) 23 | 3. [Installing ADB on Windows 7](https://www.youtube.com/watch?v=5U_BfrXV90I) 24 | 4. [Adb connection Error:远程主机强迫关闭了一个现有的连接](http://www.oschina.net/question/54100_33209) 25 | 5. [Android通过Wifi来调试你的应用](http://www.stormzhang.com/android/2014/08/27/adb-over-wifi/) 26 | 27 | ### Adapter 28 | 29 | 1. [Android简便通用的SimpleBaseAdapter](http://www.stormzhang.com/androidtips/2014/08/31/android-common-simplebaseadapter/) 30 | 2. [Android数据适配器(Adapter)优化:使用高效的ViewHolder](http://stackvoid.com/using-adapter-in-efficiency-way/) 31 | 3. [Android 快速开发系列 打造万能的ListView GridView 适配器](http://blog.csdn.net/lmj623565791/article/details/38902805/) 32 | 33 | ### AIDL 34 | 35 | 1. [android进程间通信:使用AIDL](http://blog.csdn.net/saintswordsman/article/details/5130947) 36 | 2. [Android AIDL使用详解](http://blog.csdn.net/stonecao/article/details/6425019) 37 | 3. [android跨进程通信(IPC): 使用AIDL](http://blog.csdn.net/singwhatiwanna/article/details/17041691) 38 | 4. [Android中的跨进程通信的实现(一)——远程调用过程和aidl](http://foocoder.com/blog/androidzhong-de-kua-jin-cheng-tong-xin-de-shi-xian-(%5B%3F%5D-)-yuan-cheng-diao-yong-guo-cheng-he-aidl.html/) 39 | 5. [Android Studio下如何配置AIDL文件](http://chenqichao.me/2014/05/13/003-Android-Studio-AIDL/) 40 | 41 | ### Android-Async-Http 42 | 43 | 1. [快速Android开发系列网络篇之Android-Async-Http](http://www.cnblogs.com/angeldevil/p/3729808.html) 44 | 2. [android-async-http框架库使用基础](http://yanbober.github.io/2014/11/11/csdn-opensource-analysis-5/) 45 | 46 | ### AQuery 47 | 48 | 1. [AQuery Image Loading](http://programmerguru.com/android-tutorial/aquery-image-loading/) 49 | 2. [Android之使用Android-query框架进行开发(一)](http://www.cnblogs.com/lee0oo0/archive/2012/10/25/2738299.html) 50 | 51 | ### AsyncTask 52 | 53 | 1. [Android AsyncTask完全解析,带你从源码的角度彻底理解](http://blog.csdn.net/guolin_blog/article/details/11711405) 54 | 2. [Android中AsyncTask的简单用法](http://blog.csdn.net/cjjky/article/details/6684959) 55 | 3. [Android开发者:你真的会用AsyncTask吗?](http://code.oneapm.com/android/2015/06/02/android1/) 56 | 57 | --- 58 | 59 | ## B 60 | 61 | ### Bitmap 62 | 63 | 1. [图片处理](http://beartung.github.io/rockwithandroid/image.html) 64 | 2. [Android中自定义布局中加载图片BitmapFactory.options详解](http://blog.csdn.net/appandroid/article/details/11213973) 65 | 3. [Android学习笔记进阶16之BitmapShader](http://blog.csdn.net/sjf0115/article/details/7267532) 66 | 4. [Android 优化Bitmap避免OutOfMemoryError](http://chjmars.iteye.com/blog/1157137) 67 | 5. [Android 异步加载图片,使用LruCache和SD卡或手机缓存,效果非常的流畅](http://blog.csdn.net/xiaanming/article/details/9825113) 68 | 69 | ### Broadcast 70 | 71 | 1. [【Android】BroadCast广播机制应用与实例](http://blog.csdn.net/jueblog/article/details/12667463) 72 | 2. [玩转Android---组件篇---Broadcast Receiver(广播接收器)](http://hualang.iteye.com/blog/1003374) 73 | 3. [【Android】动态注册广播接收器](http://blog.csdn.net/etzmico/article/details/7317528) 74 | 75 | --- 76 | 77 | ## C 78 | 79 | ### Callback 80 | 81 | 1. [How to Define Callbacks in Android?](http://stackoverflow.com/questions/3398363/how-to-define-callbacks-in-android) 82 | 2. [一个经典例子让你彻彻底底理解java回调机制](http://blog.csdn.net/xiaanming/article/details/8703708) 83 | 3. [Java设计模式-回调函数和观察者模式](http://blog.csdn.net/cauchyweierstrass/article/details/44593807) 84 | 85 | ### CardView 86 | 87 | 1. [Android5.0新控件CardView的介绍和使用](http://www.cnblogs.com/tianzhijiexian/p/4067308.html) 88 | 2. [Android CardView Example](http://www.truiton.com/2015/03/android-cardview-example/) 89 | 3. [Android CardView Widget – Add Cards to a List using RecyclerView](http://techlovejump.com/android-cardview-widget-example-add-to-list-using-recyclerview/) 90 | 91 | ### Configuration Change 92 | 93 | 1. [Android Configuration change引发的问题及解决方法](http://blog.csdn.net/aliaooooo/article/details/23606179?utm_source=tuicool) 94 | 2. [Handling Runtime Changes](http://developer.android.com/guide/topics/resources/runtime-changes.html) 95 | 96 | ### Context 97 | 98 | 1. [android学习—— context 和 getApplicationContext()](http://blog.csdn.net/janronehoo/article/details/7348566) 99 | 2. [Android中Context详解 ---- 你所不知道的Context](http://blog.csdn.net/qinjuning/article/details/7310620) 100 | 101 | ### CoordinatorLayout 102 | 103 | 1. [CoordinatorLayout与滚动的处理](http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/0717/3196.html) 104 | 2. [Handling Scrolls with CoordinatorLayout](https://guides.codepath.com/android/Handling-Scrolls-with-CoordinatorLayout) 105 | 106 | --- 107 | 108 | ## D 109 | 110 | ### Download 111 | 112 | 1. [Download a file with Android, and showing the progress in a ProgressDialog](http://stackoverflow.com/questions/3028306/download-a-file-with-android-and-showing-the-progress-in-a-progressdialog) [**译文**](https://github.com/troyliu0105/stackoverflow-java-top-qa/blob/master/contents/Download_a_file_with_Android_and_showing_the_progress_in_a_ProgressDialog.md) 113 | 2. [Java 服务器端支持断点续传的源代码【支持快车、迅雷】](http://blog.csdn.net/defonds/article/details/7074352) 114 | 3. [Java 多线程断点下载文件](http://www.cnblogs.com/hoojo/archive/2011/09/30/2196767.html) 115 | 4. [Android 后台Service下载 (一)](http://blog.csdn.net/qingye_love/article/details/14163511) 116 | 5. [Android网络编程 --断点续传下载文件](http://blog.csdn.net/wwj_748/article/details/20146869) 117 | 6. [android 多线程断点续传下载 一](http://blog.csdn.net/shimiso/article/details/6763664) 118 | 119 | --- 120 | 121 | ## E 122 | 123 | ### EventBus 124 | 125 | 1. [EventBus使用详解(一)——初步使用EventBus](http://blog.csdn.net/harvic880925/article/details/40660137) 126 | 2. [快速Android开发系列通信篇之EventBus](http://www.cnblogs.com/angeldevil/p/3715934.html) 127 | 128 | --- 129 | 130 | ## F 131 | 132 | ### Fragment - 碎片 133 | 134 | 1. [Android Fragment完全解析,关于碎片你所需知道的一切](http://blog.csdn.net/guolin_blog/article/details/8881711) 135 | 2. [Android Fragment 你应该知道的一切](http://blog.csdn.net/lmj623565791/article/details/42628537) 136 | 3. [Android系列之Fragment(二)----Fragment的生命周期和返回栈](http://www.cnblogs.com/smyhvae/p/3983234.html) 137 | 4. [处女男学Android(九)---Fragment进阶篇之Fragment生命周期和回退栈](http://blog.csdn.net/wlwlwlwl015/article/details/40584567) 138 | 5. [Fragment笔记整理](http://www.lightskystreet.com/2015/02/02/fragment-note/) 139 | 5. [Android实战技巧:Fragment的那些坑](http://toughcoder.net/blog/2015/04/30/android-fragment-the-bad-parts/) 140 | 6. [android Fragments详解四:管理fragment](http://www.cnblogs.com/mybkn/articles/2455138.html) 141 | 7. [Android Fragment 嵌套使用(Nested Fragments)](http://blog.csdn.net/top_code/article/details/37343075) 142 | 143 | --- 144 | 145 | ## G 146 | 147 | ### Glide 148 | 149 | 1. [Glide 一个专注于平滑滚动的图片加载和缓存库](http://www.jianshu.com/p/4a3177b57949?utm_campaign=maleskine&utm_content=note&utm_medium=writer_share&utm_source=weibo) 150 | 2. [Google推荐的图片加载库Glide介绍](http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/0327/2650.html) 151 | 152 | ### Gradle 153 | 154 | 1. [用Gradle 构建你的android程序](http://www.cnblogs.com/youxilua/archive/2013/05/20/3087935.html) 155 | 2. [Android Studio系列教程四--Gradle基础](http://stormzhang.com/devtools/2014/12/18/android-studio-tutorial4/) 156 | 3. [使用Gradle构建Android项目](http://blog.isming.me/2014/05/20/android4gradle/) 157 | 4. [使用Gradle管理你的Android Studio工程](http://www.flysnow.org/2015/03/30/manage-your-android-project-with-gradle.html) 158 | 5. [灵活强大的构建系统Gradle](http://tech.meituan.com/gradle-practice.html) 159 | 6. [Gradle Android Could not find method testPackage()](http://stackoverflow.com/questions/16971740/gradle-android-could-not-find-method-testpackage) 160 | 7. [Android Studio 1.0 Gradle Error with getConfiguration()](http://stackoverflow.com/questions/27410183/android-studio-1-0-gradle-error-with-getconfiguration) 161 | 162 | ### greenDao 163 | 164 | 1. [ORM 框架之 greenDAO 使用心得](http://itangqi.me/2015/07/26/orm-greendao-summary/) 165 | 2. [SQLite数据库框架ORMLite与GreenDao的简单比较](http://blog.csdn.net/xushuaic/article/details/24434881) 166 | 3. [在AndoridStudio中引入GreenDAO](http://blog.csdn.net/h3c4lenovo/article/details/43566169) 167 | 168 | ### GridView 169 | 170 | 1. [Android入门第八篇之GridView(九宫图)](http://blog.csdn.net/hellogv/article/details/4567095) 171 | 2. [用Volley让GridView加载网络图片](http://www.cnblogs.com/tianzhijiexian/p/4277873.html) 172 | 173 | --- 174 | 175 | ## I 176 | 177 | ### ImageView 178 | 179 | 1. [[Android] ImageView.ScaleType设置图解](http://blog.csdn.net/larryl2003/article/details/6919513) 180 | 181 | ### Immersive Full-Screen Mode 182 | 183 | 1. [Using Immersive Full-Screen Mode](https://developer.android.com/training/system-ui/immersive.html) 184 | 2. [全屏沉浸式应用](http://hukai.me/android-training-course-in-chinese/ui/system-ui/immersive.html) 185 | 186 | ### Intent 187 | 188 | 1. [Android系列教程之十:Intents and Intent Filters(一)](http://flysnow.iteye.com/blog/961576) 189 | 2. [ Android高手进阶教程(十七)之---Android中Intent传递对象的两种方法(Serializable,Parcelable)!](http://blog.csdn.net/android_tutor/article/details/5740845) 190 | 3. [Intent filter 关于Action、Category属性详解---附带实例源码](http://blog.csdn.net/andie_guo/article/details/9271973) 191 | 4. [startActivityForResult用法详解](http://www.cnblogs.com/linjiqin/archive/2011/06/03/2071956.html) 192 | 5. [Android 开发笔记——通过 Intent 传递类对象](http://www.cnblogs.com/shaocm/archive/2013/01/08/2851248.html) 193 | 194 | --- 195 | 196 | ## J 197 | 198 | ### Json 199 | 200 | 1. [Android系列---JSON数据解析](http://www.cnblogs.com/xiaoluo501395377/p/3446605.html) 201 | 2. [android json解析及简单例子](http://blog.csdn.net/lilu_leo/article/details/7000077) 202 | 3. [Android开源库--Gson谷歌官方json解析库](http://www.cnblogs.com/leestar54/p/4212318.html) 203 | 4. [DataContract4A-简化Json解析与生成](https://github.com/jywanghold/DataContract4A) 204 | 205 | --- 206 | 207 | ## L 208 | 209 | ### ListFragment 210 | 211 | 1. [Android App组件之ListFragment -- 说明和示例](http://www.cnblogs.com/skywang12345/p/3160260.html) 212 | 2. [Android 使用ListFragment显示列表](http://li2.me/android/Displaying-Lists-with-ListFragment/) 213 | 214 | ### ListView 215 | 216 | 1. [在Activity中响应ListView内部按钮的点击事件](http://www.cnblogs.com/ivan-xu/p/4124967.html) 217 | 218 | --- 219 | 220 | ## M 221 | 222 | ### MessageDigest 223 | 224 | 1. [Java利用MessageDigest获取字符串或文件MD5详解](http://blog.csdn.net/xiao__gui/article/details/8148203) 225 | 2. [类 MessageDigest](http://www.cjsdn.net/Doc/JDK50/java/security/MessageDigest.html) 226 | 227 | ### Material Design 228 | 229 | 1. [Google Material Design: Everything You Need to Know](http://designshack.net/articles/webstandards/google-material-design-everything-you-need-to-know/) 230 | 2. [An exploration in Material Design](https://medium.com/feedly-behind-the-curtain/an-exploration-in-material-design-by-feedly-8c1a1cbdfdcd) 231 | 3. [谢谷歌大神传我动画设计30年功力](http://www.zcool.com.cn/article/ZMTU5MzAw.html#jtss-tsina) 232 | 4. [Codelab for Android Design Support Library used in I/O Rewind Bangkok session](http://inthecheesefactory.com/blog/android-design-support-library-codelab/en) 233 | 234 | --- 235 | 236 | ## N 237 | 238 | ### NavigationView 239 | 240 | 1. [Easy Navigation Drawer with Design Support Library](http://blog.grafixartist.com/easy-navigation-drawer-with-design-support-library/) 241 | 242 | ### Notification 243 | 244 | 1. [Android——Notifications笔记](http://segmentfault.com/a/1190000000402154) 245 | 2. [Android学习之Notification的简单使用](http://blog.csdn.net/cjllife/article/details/8565370) 246 | 247 | --- 248 | 249 | ## O 250 | 251 | ### ORMLite 252 | 253 | 1. [Android 快速开发系列 ORMLite 框架最佳实践](http://blog.csdn.net/lmj623565791/article/details/39122981) 254 | 2. [Android ORM框架之 ORMLite](https://www.zybuluo.com/flyouting/note/6996) 255 | 256 | --- 257 | 258 | ## P 259 | 260 | ### Parcelable 261 | 262 | 1. [Android中Parcelable接口用法](http://www.cnblogs.com/renqingping/archive/2012/10/25/Parcelable.html) 263 | 264 | ### PackageManager 265 | 266 | 1. [Android中获取应用程序(包)的信息-----PackageManager的使用(一)](http://blog.csdn.net/qinjuning/article/details/6867806) 267 | 2. [【Android】获取手机中已安装apk文件信息(PackageInfo、ResolveInfo)(应用图片、应用名、包名等)](http://blog.csdn.net/feng88724/article/details/6198446) 268 | 3. [Android获取已安装应用信息(图标,名称,版本号,包)](http://www.cnblogs.com/mainroadlee/archive/2011/05/23/android_get_installed_app.html) 269 | 4. [关于android 如何安装 assets文件下的apk](http://blog.csdn.net/shen332401890/article/details/8826827) 270 | 271 | ### Palette 272 | 273 | 1. [Extracting Colors to a Palette with Android Lollipop](https://www.bignerdranch.com/blog/extracting-colors-to-a-palette-with-android-lollipop/) 274 | 2. [Android Lollipop 新特性 - Palette](http://baoyz.com/android/2014/10/21/android-palette-use/) 275 | 276 | ### Preference 277 | 278 | 1. [PreferenceActivity(首选项设置页)](http://blog.csdn.net/plussoft/article/details/9993759) 279 | 2. [Android的设置界面及Preference使用](http://blog.csdn.net/ichliebephone/article/details/5916320) 280 | 281 | ### Picasso 282 | 283 | 1. [Picasso官方网站及javadoc](http://square.github.io/picasso/) 284 | 2. [Android图片下载缓存库picasso解析](http://blog.csdn.net/xu_fu/article/details/17043231) 285 | 286 | --- 287 | 288 | ## R 289 | 290 | ### Reference 291 | 292 | 1. [Java的引用StrongReference、 SoftReference、 WeakReference 、PhantomReference](http://blog.csdn.net/mxbhxx/article/details/9111711) 293 | 2. [Java 7之基础 - 强引用、弱引用、软引用、虚引用](http://blog.csdn.net/mazhimazh/article/details/19752475) 294 | 295 | ### RecyclerView 296 | 297 | 1. [RecyclerView使用详解(一)](http://frank-zhu.github.io/android/2015/01/16/android-recyclerview-part-1/) 298 | 2. [Android RecyclerView 使用完全解析 体验艺术般的控件](http://blog.csdn.net/lmj623565791/article/details/45059587) 299 | 3. [A Guide to Android RecyclerView and CardView](http://www.binpress.com/tutorial/android-l-recyclerview-and-cardview-tutorial/156) 300 | 4. [Android-RecyclerView-Item点击事件设置](http://blog.csdn.net/guxiao1201/article/details/40423361) 301 | 5. [Why doesn't RecyclerView have onItemClickListener()? And how RecyclerView is different from Listview?](http://stackoverflow.com/questions/24885223/why-doesnt-recyclerview-have-onitemclicklistener-and-how-recyclerview-is-dif) 302 | 6. [Create RecyclerView with multiple view type](http://doublewong.com/2014/create-recyclerview-with-multiple-view-type/) 303 | 7. [Simple RecyclerView Divider](https://gist.github.com/polbins/e37206fbc444207c0e92) 304 | 305 | ### RandomAccessFile 306 | 307 | 1. [Java RandomAccessFile用法](http://blog.csdn.net/akon_vm/article/details/7429245) 308 | 309 | --- 310 | 311 | ## S 312 | 313 | ### SearchView 314 | 315 | 1. [详细解读Android中的搜索框(三)—— SearchView](http://www.cnblogs.com/tianzhijiexian/p/4226675.html) 316 | 317 | ### Serializable 318 | 319 | 1. [Android系统中Parcelable和Serializable的区别](http://greenrobot.me/devpost/android-parcelable-serializable/) 320 | 2. [Android: Difference between Parcelable and Serializable?](http://stackoverflow.com/questions/3323074/android-difference-between-parcelable-and-serializable) 321 | 322 | ### Service 323 | 324 | 1. [Android Service完全解析,关于服务你所需知道的一切(上)](http://blog.csdn.net/guolin_blog/article/details/11952435) 325 | 2. [ExecutorService 的理解与使用](http://blog.csdn.net/bairrfhoinn/article/details/16848785) 326 | 3. [Android基本功:IntentService的使用](http://blog.csdn.net/p106786860/article/details/17885115) 327 | 328 | ### SharedPreference 329 | 330 | 1. [Android SharedPreferences使用以及原理详解](http://blog.csdn.net/wxyyxc1992/article/details/17222841) 331 | 2. [Google为何这样设计OnSharedPreferenceChangeListener](http://droidyue.com/blog/2014/11/29/why-onsharedpreferencechangelistener-was-not-called/) 332 | 333 | ### SparseArray 334 | 335 | 1. [Android应用性能优化之使用SparseArray替代HashMap](http://liuzhichao.com/p/832.html) 336 | 2. [Android SparseArray](http://lmbj.net/blog/android-sparsearray/) 337 | 3. [Android性能优化之使用SparseArray代替HashMap](http://stormzhang.com/android/2013/08/01/android-use-sparsearray-for-performance-optimization/) 338 | 339 | ### SQLite 340 | 341 | 1. [Android中SQLite应用详解](http://blog.csdn.net/liuhe688/article/details/6715983) 342 | 2. [ANDROID开发之SQLite详解](http://www.cnblogs.com/Excellent/archive/2011/11/19/2254888.html) 343 | 3. [使用嵌入式关系型SQLite数据库存储数据](http://justsee.iteye.com/blog/932591) 344 | 345 | ### Support Library 346 | 347 | 1. [Android Support兼容包详解](https://getpocket.com/a/read/881902653) 348 | 349 | ### SwipeRefreshLayout 350 | 351 | 1. [Android SwipeRefreshLayout](http://www.stormzhang.com/android/2014/03/29/android-swiperefreshlayout/) 352 | 353 | --- 354 | 355 | ## T 356 | 357 | ### Textview 358 | 359 | 1. [Remove underline from links in TextView](http://stackoverflow.com/questions/4096851/remove-underline-from-links-in-textview-android) 360 | 361 | ### TouchEvent 362 | 363 | 1. [两分钟彻底让你明白Android中onInterceptTouchEvent与onTouchEvent(图文)!](http://blog.csdn.net/android_tutor/article/details/7193090) 364 | 2. [MotionEvent事件在onInterceptTouchEvent()、onTouchEvent()中的传递顺序](http://www.cnblogs.com/rocky_yi/archive/2011/01/21/1941522.html#) 365 | 366 | ### Thread 367 | 368 | 1. [ThreadPoolExecutor运转机制详解](http://blog.csdn.net/cutesource/article/details/6061229) 369 | 2. [ThreadPoolExecutor使用和思考(上)-线程池大小设置与BlockingQueue的三种实现区别](http://dongxuan.iteye.com/blog/901689) 370 | 3. [Java并发编程:Callable、Future和FutureTask](http://www.cnblogs.com/dolphin0520/p/3949310.html) 371 | 4. [Java 7之多线程线程池 - Callable和Future](http://blog.csdn.net/mazhimazh/article/details/19291965) 372 | 5. [Java 7之多线程线程池 - 线程池原理(1)](http://blog.csdn.net/mazhimazh/article/details/19243889) 373 | 6. [Android线程间交互(Java synchronized & Android Handler)](http://www.juwends.com/tech/android/android-inter-thread-comm.html) 374 | 7. [Android--多线程之Handler](http://www.cnblogs.com/plokmju/p/android_handler.html) 375 | 8. [Java(Android)中线程池的使用](http://landerlyoung.github.io/blog/2014/09/23/javazhong-xian-cheng-chi-de-shi-yong/) 376 | 9. [Java(Android)线程池](http://www.trinea.cn/android/java-android-thread-pool/) 377 | 378 | --- 379 | 380 | ## U 381 | 382 | ### Unit Test 383 | 384 | 1. [Android单元测试](http://www.cnblogs.com/tianzhijiexian/p/4296055.html) 385 | 2. [Don’t Test Blindly: The Right Methods for Unit Testing Your Java Apps](http://zeroturnaround.com/rebellabs/dont-test-blindly-the-right-methods-for-unit-testing-your-java-apps/) 386 | 387 | --- 388 | 389 | ## V 390 | 391 | ### ViewPager 392 | 393 | 1. [ViewPager + Fragment实现滑动标签页](http://blog.csdn.net/lizhenmingdirk/article/details/13631813) 394 | 2. [【移动开发】Android中Fragment+ViewPager的配合使用](http://smallwoniu.blog.51cto.com/3911954/1322746) 395 | 396 | ### View 397 | 398 | 1. [Android LayoutInflater原理分析,带你一步步深入了解View(一)](http://blog.csdn.net/guolin_blog/article/details/12921889) 399 | 2. [Android中View绘制流程以及invalidate()等相关方法分析](http://blog.csdn.net/qinjuning/article/details/7110211) 400 | 3. [Android中measure过程、WRAP_CONTENT详解以及xml布局文件解析流程浅析(上)](http://blog.csdn.net/qinjuning/article/details/8051811) 401 | 4. [Android开发:LayoutParams的用法](http://www.cnblogs.com/shaweng/archive/2012/07/10/2585134.html) 402 | 403 | ### ViewFlipper 404 | 405 | 1. [Android ViewFlipper的使用分析](http://www.cnblogs.com/PengLee/p/4156302.html) 406 | 2. [Android 滑动效果入门篇(一)—— ViewFlipper](http://blog.csdn.net/ithomer/article/details/7420567) 407 | 408 | ### VideoView 409 | 410 | 1. [Android--使用VideoView播放视频](http://www.cnblogs.com/plokmju/p/android_videoview.html) 411 | 2. [Playing a video in VideoView in Android](http://stackoverflow.com/questions/3263736/playing-a-video-in-videoview-in-android) 412 | 413 | ### Volley 414 | 415 | 1. [Android Volley完全解析(一),初识Volley的基本用法](http://blog.csdn.net/guolin_blog/article/details/17482095) 416 | 2. [Android库Volley的使用介绍](https://bxbxbai.github.io/2014/09/14/android-working-with-volley/) 417 | 418 | --- 419 | 420 | ## W 421 | 422 | ### WebView 423 | 424 | 1. [Java 与 JavaScript 如何进行交互](http://itangqi.me/2015/03/07/java-and-javascript-interaction-in-android/) 425 | 2. [android与javascript交互调用](http://blog.csdn.net/chenzheng_java/article/details/6260872) 426 | 3. [Android与js交互实例](http://blog.csdn.net/ithomer/article/details/8737999) 427 | 4. [Android中Java和JavaScript交互](http://droidyue.com/blog/2014/09/20/interaction-between-java-and-javascript-in-android/) 428 | 5. [顶部带进度条的Webview](http://droidyue.com/blog/2014/07/12/ding-bu-dai-jin-du-tiao-de-webview/) 429 | 6. [Android WebView播放视频问题](http://www.stormzhang.com/android/2014/03/23/android-webview-play-video/) 430 | 7. [理解WebKit和Chromium: Android 4.4 上的Chromium WebView](http://blog.csdn.net/milado_nju/article/details/17098399) 431 | 8. [在WebView中如何让JS与Java安全地互相调用](http://www.pedant.cn/2014/07/04/webview-js-java-interface-research/) 432 | 9. [Android WebView的Js对象注入漏洞解决方案](http://blog.csdn.net/leehong2005/article/details/11808557) 433 | 434 | --- 435 | 436 | ## 其他 437 | 438 | ### 自定义控件 439 | 440 | 1. [Android 自定义View及其在布局文件中的使用示例](http://www.cnblogs.com/crashmaker/p/3521310.html) 441 | 2. [自定义控件进阶:declare-styleable重用attr](http://droidyue.com/blog/2014/07/16/better-in-android-include-attrs-in-declare-stylable/) 442 | 3. [android 自定义控件 使用declare-styleable进行配置属性(源码角度)](http://blog.csdn.net/vipzjyno1/article/details/23696537) 443 | 4. [Android使用AttributeSet自定义控件的方法](http://www.cnblogs.com/zwl12549/archive/2011/04/13/2015366.html) 444 | 5. [从源码中浅析Android中如何利用attrs和styles定义控件](http://michaelye1988.iteye.com/blog/1773997) 445 | 6. [Android SDK: Creating Custom Views](http://code.tutsplus.com/tutorials/android-sdk-creating-custom-views--mobile-14548) 446 | 7. [Creating custom and compound Views in Android - Tutorial](http://www.vogella.com/tutorials/AndroidCustomViews/article.html) 447 | 8. [Tutorial: Enhancing Android UI with Custom Views](https://newcircle.com/s/post/1663/tutorial_enhancing_android_ui_with_custom_views_dave_smith_video) 448 | 9. [Android 自定义View (一)](http://blog.csdn.net/lmj623565791/article/details/24252901) 449 | 450 | --- 451 | 452 | ### Android Studio 453 | 454 | 1. [Android Studio导入项目](http://ask.android-studio.org/?/article/21) 455 | 2. [Android Studio 简单设置](http://blog.gaoqixhb.com/p/54b9c293bf1ac9364284af78) 456 | 3. [Android Studio 简介及导入 jar 包和第三方开源库方法](http://drakeet.me/android-studio) 457 | 4. [Android Studio使用技巧系列教程(一)](http://blog.csdn.net/growth58/article/details/46729803) 458 | 5. [Android Studio中如何使用Git和Github来管理项目](http://blog.csdn.net/wei18359100306/article/details/45645145) 459 | 460 | --- 461 | 462 | ### Code Style 463 | 464 | 1. [Java编程规范](http://www.stormzhang.com/java/2013/07/20/java-coding-standards/) 465 | 2. [Android 命名规范 (提高代码可以读性)](http://blog.csdn.net/vipzjyno1/article/details/23542617) 466 | 3. [Code Style Guidelines for Contributors](http://source.android.com/source/code-style.html) 467 | 468 | --- 469 | 470 | ### Git 471 | 472 | 1. [Pro Git](http://git-scm.com/book/zh/v1) 473 | 2. [GitHub秘籍](http://snowdream86.gitbooks.io/github-cheat-sheet/content/zh/index.html) 474 | 3. [git - 简易指南](http://www.bootcss.com/p/git-guide/) 475 | 4. [基于Github参与开源项目指南](http://yeungeek.com/2015/07/01/%E5%9F%BA%E4%BA%8EGithub%E5%8F%82%E4%B8%8E%E5%BC%80%E6%BA%90%E9%A1%B9%E7%9B%AE%E6%8C%87%E5%8D%97/) 476 | 5. [使用git和github进行协同开发流程](http://livoras.com/post/28) 477 | 478 | --- 479 | 480 | ### Hexo 481 | 482 | 1. [如何搭建一个独立博客——简明Github Pages与Hexo教程](http://www.jianshu.com/p/05289a4bc8b2) 483 | 2. [Mac下程序员博客之 Hexo + GitHub Pages + GitCafe Pages + DNSPod](http://godera.org/2015/03/16/Mac%E4%B8%8B%E7%A8%8B%E5%BA%8F%E5%91%98%E5%8D%9A%E5%AE%A2%E4%B9%8BHexo-GitHub-Pages-GitCafe-Pages-DNSPod/) 484 | 3. [动动手指,NexT主题与Hexo更搭哦(基础篇)](http://www.arao.me/2015/hexo-next-theme-optimize-base/) 485 | 4. [hexo博客搭建时遇到的一些问题](http://chitanda.me/2015/06/11/tips-for-setup-hexo/) 486 | 487 | --- 488 | 489 | ### Smali 490 | 491 | 1. [Smali--Dalvik虚拟机指令语言-->【android_smali语法学习一】 492 | ](http://blog.csdn.net/wdaming1986/article/details/8299996) 493 | 2. [apk的包名修改](http://www.cnblogs.com/tianxiaozz/archive/2012/12/26/change_apk_package_name.html) 494 | 3. [为Sublime Text安装smali代码语法高亮插件](http://liuzhichao.com/p/1476.html) 495 | 496 | --- 497 | 498 | ### 设计模式 499 | 500 | 1. [Java开发中的23种设计模式详解](http://zz563143188.iteye.com/blog/1847029) 501 | 2. [MVC,MVP 和 MVVM 的图示](http://www.ruanyifeng.com/blog/2015/02/mvcmvp_mvvm.html) 502 | 503 | --- 504 | 505 | ### Others 506 | 507 | 1. [THE DEX 64K LIMIT IS NOT A PROBLEM ANYMORE, ALMOST](http://www.mutualmobile.com/posts/dex-64k-limit-not-problem-anymore-almost) 508 | 2. [Android 4.4从图库选择图片,获取图片路径并裁剪](http://blog.csdn.net/tempersitu/article/details/20557383) 509 | 3. [浅析android应用增量升级](http://blog.csdn.net/hmg25/article/details/8100896) 510 | 4. [Android四大基本组件介绍与生命周期](http://www.cnblogs.com/bravestarrhu/archive/2012/05/02/2479461.html) 511 | 5. [Android代码优化——使用Android lint工具](http://blog.csdn.net/xyz_lmn/article/details/14222939) 512 | 6. [Android 插件化 动态升级](http://www.trinea.cn/android/android-plugin/) 513 | 7. [Java String StringBuilder StringBuffer](http://www.stormzhang.com/java/2014/08/08/java-string-stringbuilder-stringbuffer/) 514 | 8. [tools:context=".MainActivity的作用](http://blog.csdn.net/caiwenfeng_for_23/article/details/8373569) 515 | 9. [关于APK瘦身值得分享的一些经验](http://www.jianshu.com/p/bd90dee57ad0) 516 | 10. [性能优化之数据库优化](http://www.trinea.cn/android/database-performance/) 517 | 11. [How to check visibility of software keyboard in Android?](http://stackoverflow.com/questions/2150078/how-to-check-visibility-of-software-keyboard-in-android) 518 | --------------------------------------------------------------------------------