整理一些比较好的Android开发教程
这些都是我在学习Android开发过程中觉得比较好的教程和博客,在这里整理一下,方便自己也方便大家学习使用。
欢迎补充~
##介绍LoaderManager的使用
Life before Loaders(part 1)
http://www.androiddesignpatterns.com/2012/07/loaders-and-loadermanager-background.htmlUnderstanding the LoaderManager(part 2)
http://www.androiddesignpatterns.com/2012/07/understanding-loadermanager.htmlImplementing Loaders(part 3)
http://www.androiddesignpatterns.com/2012/08/implementing-loaders.htmlTutorial: AppListLoader(part 4)
http://www.androiddesignpatterns.com/2012/09/tutorial-loader-loadermanager.html
https://github.com/alexjlockwood/AppListLoaderHow to use Loaders in Android
http://www.grokkingandroid.com/using-loaders-in-android/
介绍Volley的使用
Android库Volley的使用介绍
http://bxbxbai.github.io/2014/09/14/android-working-with-volley/Android Volley完全解析(博主是Android牛人,博客质量很高!)
http://blog.csdn.net/guolin_blog/article/details/17482095 (Android Volley完全解析(一),初识Volley的基本用法)
http://blog.csdn.net/guolin_blog/article/details/17482165
http://blog.csdn.net/guolin_blog/article/details/17612763
http://blog.csdn.net/guolin_blog/article/details/17656437Android 官方的Volley使用介绍(看完基本就知道怎么用了)
3.1 Transmitting Network Data using Volley
http://developer.android.com/training/volley/index.html
3.2 Sending a Simple Request(发送一个简单的request)
http://developer.android.com/training/volley/simple.html
3.3 Setting up a RequestQueue(创建一个请求队列)
http://developer.android.com/training/volley/requestqueue.html
3.4 Making a Standard Request(使用volley自带的request类)
http://developer.android.com/training/volley/request.html
3.5 Implementing a Custom Request(创建你自己的request类这里的栗子就是创建一个GsonRequest)
http://developer.android.com/training/volley/request-custom.html
3.6 Google I/O 2013,Volley:Fast, Networking in Android(Google IO大会上的演讲,自备梯子)
https://www.youtube.com/watch?v=yhv8l9F44qo
3.7 使用Volley的一个demo 工程
https://github.com/bxbxbai/FeedListViewDemo
Android开发实例
Android Working with ActionBar(讲解Actionbar的使用)
http://www.androidhive.info/2013/11/android-working-with-action-bar/创建一个类似Hello SMS的菜单
http://blog.robinchutaux.com/blog/how-to-create-a-menu-like-hello-sms/一个开源的知乎专栏App
https://github.com/bxbxbai/ZhuanLan
Android 开源项目集合
- 最流行的Android组件大全(包括工具和教程,UI组件,类库,游戏引擎和H5应用)
http://colobu.com/2014/08/15/android-components-collection/
http://blog.daimajia.com/android-library-collection/
Android 应用性能优化(包含Android 官方文档)
Managing Your App’s Memory
http://developer.android.com/training/articles/memory.htmlPerformance Tips
http://developer.android.com/training/articles/perf-tips.htmlImproving Layout Performance
http://developer.android.com/training/improving-layouts/index.htmlSending Operations to Multiple Threads
http://developer.android.com/training/multiple-threads/index.htmlPerformance Tuning On Android(作者详细介绍了各种分析Android性能的方法以及优化策略,非常好的一篇博客)
http://blog.venmo.com/hf2t3h4x98p5e13z82pl8j66ngcmry/performance-tuning-on-androidUsing Android TraceView
http://blog.cindypotvin.com/using-android-traceview-in-eclipse/分析你的App内存使用情况
https://developer.android.com/tools/debugging/debugging-memory.htmlAndroid Performance Case Study
http://www.curious-creature.org/2012/12/01/android-performance-case-study/
Android ContentProvider介绍
Content Provider Basics
http://www.grokkingandroid.com/android-tutorial-content-provider-basics/Using Content Providers
http://www.grokkingandroid.com/android-tutorial-using-content-providers/Writing your own Content Provider
http://www.grokkingandroid.com/android-tutorial-writing-your-own-content-provider/Better Performance with ContentProviderOperation
http://www.grokkingandroid.com/better-performance-with-contentprovideroperation/
Android 开发经验
CodePath Android: http://guides.codepath.com/android
Working with the TextView
http://guides.codepath.com/android/Working-with-the-TextViewWorking with the ImageView
http://guides.codepath.com/android/Working-with-the-ImageViewEndless Scrolling with AdapterViews(可以无限加载更多的AdapterView,很巧妙的继承了OnScrollListener)
http://guides.codepath.com/android/Endless-Scrolling-with-AdapterViewsAndroid事件传递机制(有栗子,有分析)
http://www.infoq.com/cn/articles/android-event-delivery-mechanismAndroid Tips Round-Up, Part 5(Android开发技巧)
http://blog.danlew.net/2014/05/28/android-tips-round-up-part-5/Activity和Fragment的生命周期图
http://bxbxbai.github.io/img/complete_android_fragment_lifecycle.png使用GestureDetector(ListView中左右滑动显示菜单也是使用GestureDetector)
http://ryanharter.com/blog/2014/10/08/using-gestures/ (博文中有图片方法缩小的栗子,可能需要梯子)
https://github.com/rharter/android-gesture-detectors (github上使用GestureDetector的一个项目)
Android开发在线工具
在线创建Holo主题(Android Holo Colors Generator)
http://android-holo-colors.com/在线创建ActionBar样式(Android Action Bar Style Generator)
http://jgilfelt.github.io/android-actionbarstylegenerator/在线创建Button样式(Android Button Maker)
http://angrytools.com/android/button/SQLite数据加密
https://www.zetetic.net/sqlcipher/在线创建Icon资源(包括:Launch Icon,Actionbar和tab icon,Notification Icon等等)
http://romannurik.github.io/AndroidAssetStudio/index.htmlDevice Frame Generator
http://f2prateek.com/android-device-frame-generator/Android Simple Nine-patch Generator
http://romannurik.github.io/AndroidAssetStudio/nine-patches.htmlAndroidDrawableFactory
https://github.com/tizionario/AndroidDrawableFactoryAndroid Layout Resource Binder(根据xml布局文件,生成findViewById 的Java代码)
http://android.lineten.net/layout.phpAndroid Fragment Code Generator
http://techisfun.github.io/pages/android-fragment-generator/Android ContentProvider Generator
https://github.com/BoD/android-contentprovider-generatorSelectorChapek for Android(快速生成Select文件)
https://github.com/inmite/android-selector-chapekAndroid开发工具整理
https://github.com/inferjay/AndroidDevTools
http://www.androiddevtools.cn/
Android Design
台湾人翻译的Material Design文档(非常好!)
http://wcc723.gitbooks.io/google_design_translate/content/material-design-introduction.htmlAndroid Design 非官方文档(中文翻译)
http://adchs.github.io/Google 开源的Material Design Icons
http://google.github.io/material-design-icons/
https://github.com/google/material-design-iconsAndroid Desgin规范
http://www.androiddesign.tips/
http://petrnohejl.github.io/Android-Cheatsheet-For-Graphic-Designers/Material Design Center:
https://github.com/lightSky/MaterialDesignCenter
很不错的Android开源库
第一必须是Volley,上面已经列出链接了
Android Asynchronous Http Client(又是一个异步http通信库,也是非常简单好用)
http://loopj.com/android-async-http/Butter Knife(你再也不需要老是调用findViewById了!!!功能超级强大!!)
http://jakewharton.github.io/butterknife/Android Smart Image View(可以从Url或者联系人地址簿中加载图片,图片会自动缓存到内存和SD卡上)
http://loopj.com/android-smart-image-view/Square公司的Android开源项目
http://square.github.io/#androidActiveAndroid项目(SQLite数据的ORM框架)
https://github.com/pardom/ActiveAndroid/wiki/Getting-started
https://github.com/pardom/ActiveAndroid