├── .gitignore ├── LICENSE ├── README.md ├── README_TR.md └── README_ZH.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | 3 | # Mobile Tools for Java (J2ME) 4 | .mtj.tmp/ 5 | 6 | # Package Files # 7 | *.jar 8 | *.war 9 | *.ear 10 | 11 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 12 | hs_err_pid* 13 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # android-resources 2 | Android development resources 3 | 4 | [English version](https://github.com/Tikitoo/android-resources/blob/master/README.md) 5 | 6 | [中文版](https://github.com/Tikitoo/android-resources/blob/master/README_ZH.md) 7 | 8 | [Türkçe versiyon](https://github.com/Tikitoo/android-resources/blob/master/README_TR.md) 9 | 10 | 11 | 12 | 13 | ## Java 14 | - [Introduction to Programming in Java: An Interdisciplinary Approach](http://introcs.cs.princeton.edu/java/home/) 15 | - [Java Tutorial - TutorialSpoint](http://www.tutorialspoint.com/java/) 16 | - [Java Tutorial PDF](http://www.tutorialspoint.com/java/java_tutorial.pdf) 17 | - [Javanotes 7.0 -- Title Page](http://math.hws.edu/eck/cs124/downloads/javanotes7.pdf) 18 | - [Head First Java](http://shop.oreilly.com/product/9780596009205.do)([中文版](http://item.jd.com/10222740.html)) 19 | - [Think in Java](http://www.amazon.com/Thinking-Java-4th-Bruce-Eckel/dp/0131872486)([中文版](http://search.jd.com/Search?keyword=Java%E7%BC%96%E7%A8%8B%E6%80%9D%E6%83%B3&enc=utf-8&pvid=3k9neboi.t8qd1i)) 20 | 21 | 22 | 23 | 24 | ## Getting started 25 | 26 | - [Getting Started | Android Developers](https://developer.android.com/training/index.html) 27 | - [How to get started programming Android apps | HalfApp](http://halfapp.com/blog/get-started-programming-android-apps/) 28 | - [A step by step guide about how to get started and involved in Android Development - Reddit](http://www.reddit.com/r/Android/comments/1w3woc/a_step_by_step_guide_about_how_to_get_started_and/) 29 | - [Beginning Android Resources · codepath/android_guides Wiki](https://github.com/codepath/android_guides/wiki/Beginning-Android-Resources) 30 | - [写给Android 开发的入门教程 | Tikitoo Blog](http://tikitoo.github.io/2015/08/23/android-developer-tutorial/) 31 | - [如何自学Android | Gityuan博客](http://gityuan.com/2016/04/24/how-to-study-android/) 32 | 33 | 34 | 35 | 36 | ## Books 37 | 38 | - [ The Busy Coder's Guide to Android Development](http://commonsware.com/Android/) 39 | - [Best Android Books and Resources 2014](http://nimooli.com/blog/best-android-books-2014/) 40 | - [第一行代码]() 41 | - [Android Programming: The Big Nerd Ranch Guide (2nd Edition)(Android 编程:权威指南)]() 42 | - [Head First Android Development(深入浅出Android 开发)]() 43 | - [Android 群英传]() 44 | - [《Android 开发艺术探索》]() 45 | - [《Android 设计模式源码分析》]() 46 | - [《Android 开发精要》]() 47 | - [《App 研发录》]() 48 | 49 | 50 | 51 | 52 | ## Open courses 53 | - [How to Develop Android Apps Online Course - Udacity](https://www.udacity.com/course/ud853) 54 | - [Programming Mobile Applications for Android (Coursera)](https://class.coursera.org/android-001/lecture) 55 | - [Android Development For Absolute Beginners - YouTube](https://www.youtube.com/playlist?list=PLB03EA9545DD188C3) 56 | 57 | 58 | 59 | 60 | ## Series Tutorials 61 | - [Home · codepath/android_guides Wiki - codepath](https://github.com/thecodepath/android_guides/wiki) 62 | - [Android tutorial - TutorialSpoint](http://www.tutorialspoint.com/android/index.htm) 63 | - [Android Development - Vogella](http://www.vogella.com/tutorials/android.html) 64 | - [AndroidHive | Tutorials, Games, Apps, Tips |](http://androidhive.info/) 65 | - [Android Tutorial | Interactive and Step by step tutorial to learn Android](http://www.codelearn.org/android-tutorial/) 66 | - [Android SDK - Tuts+ Code Category](https://code.tutsplus.com/categories/android-sdk) 67 | - [Android Programming Archives - Learn2Crack](http://www.learn2crack.com/category/androidprogramming) 68 | - [Android Learning Path | SlideRule](https://www.mysliderule.com/learning-paths/android/learn/) 69 | 70 | 71 | 72 | 73 | 74 | ## Blogs 75 | 76 | - [android-cn/android-dev-cn](https://github.com/android-cn/android-dev-cn) 77 | - [android-cn/android-dev-com](https://github.com/android-cn/android-dev-com) 78 | - [What are must-read Android developer blogs? - Quora](http://www.quora.com/What-are-must-read-Android-developer-blogs) 79 | - [有哪些 Android 大牛的 blog 值得推荐? - 知乎](http://www.zhihu.com/question/19775981) 80 | - [vbauer/android-blogs](https://github.com/vbauer/android-blogs) 81 | 82 | 83 | 84 | 85 | 86 | ## Open source App 87 | - [F-Droid | Free and Open Source Android App Repository](https://f-droid.org/) 88 | - [Android优秀开源项目 - 小猪爬爬](http://blog.tisa7.com/android_open_source_projects) 89 | - [The Android Arsenal - A categorized directory of free libraries and tools for Android](https://android-arsenal.com/) 90 | - [Trinea/android-open-project - Trinea](https://github.com/Trinea/android-open-project) 91 | 92 | 93 | 94 | 95 | 96 | ## Open Source Project 97 | - [LittleFriendsGroup/AndroidSdkSourceAnalysis](https://github.com/LittleFriendsGroup/AndroidSdkSourceAnalysis) 98 | 99 | 100 | 101 | 102 | 103 | ## Dev Tools 104 | - [Great Code Examples & Snippets | Codota](http://www.codota.com/) 105 | - [Gradle](http://www.gradleware.com/) 106 | - [Android Studio]() 107 | - [Android User Interface | User Experience | Inspiration source for Android Designers and Developers](http://androiduiux.com) 108 | - [Android App Patterns](http://www.android-app-patterns.com/) 109 | - [Iconfinder - 400,000+ free and premium icons](https://www.iconfinder.com/) 110 | - [google/material-design-icons - github](https://github.com/google/material-design-icons) 111 | - [inferjay/AndroidDevTools](https://github.com/inferjay/AndroidDevTools) 112 | - [Genymotion - A faster Android emulator](https://www.genymotion.com/) 113 | 114 | 115 | 116 | 117 | 118 | ## Newletter 119 | - [Android 周刊](http://androidweekly.net/) 120 | - [Android开发技术周报](http://www.androidweekly.cn/) 121 | - [码农周刊 - Android](https://github.com/nemoTyrant/manong#ANDROID) 122 | - [Android 科学院](http://zhuanlan.zhihu.com/andlib) 123 | - [开发技术前线](http://www.devtf.cn/?cat=2) 124 | - [App开发日报](http://app.memect.com/) 125 | - [移动开发每周阅读清单](http://mobilefrontier.github.io/) 126 | - [Android 周报](http://www.race604.com/tag/Android-Weekly/) 127 | - [干货集中营](http://gank.io/) 128 | - [The Android Arsenal](http://android-arsenal.com/) 129 | - [codeKK ](http://a.codekk.com/) 130 | - [Android Blog 周刊](http://androidblog.cn/) 131 | - [Android Dev](http://www.jianshu.com/collection/6e31b7354a48) 132 | - [Android 开发经验谈](http://www.jianshu.com/collection/5139d555c94d) 133 | 134 | 135 | 136 | 137 | ## Resources 138 | - [Best resources for Android development](http://www.androidauthority.com/best-resources-android-development-372414/) 139 | - [Resources every Android developer must know](http://www.bongizmo.com/blog/android-resources-each-developer-should-know/) 140 | - [Android开发者必知的开发资源 - ImportNew](http://www.importnew.com/3988.html) 141 | - [开发资源 | Android 沉思录](http://yeungeek.com/awesome-resources/) 142 | - [Android Developer Resources, Tutorials, and References — Being Apptentive](http://www.apptentive.com/blog/programming-resources-for-android-developers/) 143 | - [Beginning Android Resources · codepath/android_guides Wiki](https://github.com/codepath/android_guides/wiki/Beginning-Android-Resources) 144 | - [Android开发者资源大汇总 - Android开发周刊 - 博客园](http://www.cnblogs.com/mainroadlee/p/android_resources_list.html) 145 | - [awesome-android - github](https://github.com/snowdream/awesome-android) 146 | - [Where To Start - Learning Android Development the Right Way - Kevin Darty - Google+](https://plus.google.com/+KevinDarty/posts/Qex6Ae6zhZW) 147 | - [resources - androiddev reddit](http://www.reddit.com/r/androiddev/wiki/resources) 148 | - [整理一些比较好的Android开发教程](http://bxbxbai.github.io/2014/10/07/android-develop-resource/) 149 | 150 | 151 | 152 | 153 | ## 优化 & 架构 154 | - [codeKK 开源项目源码分析](http://a.codekk.com/) 155 | - [Android Best Practices(Android 最佳实践)](https://github.com/futurice/android-best-practices) 156 | - [Android Clean Architecture(Android 整洁的架构)](https://github.com/android10/Android-CleanArchitecture) 157 | - [代码规范和Android项目中的一些可用工具](http://tech.glowing.com/cn/dai-ma-gui-fan-he-androidxiang-mu-zhong-de-xie-ke-yong-gong-ju/#) 158 | - [Android 命名规范 (提高代码可以读性)](http://blog.csdn.net/vipzjyno1/article/details/23542617) 159 | 160 | 161 | 162 | 163 | 164 | ## License 165 | ``` 166 | Copyright 2015 Tikitoo 167 | 168 | Licensed under the Apache License, Version 2.0 (the "License"); 169 | you may not use this file except in compliance with the License. 170 | You may obtain a copy of the License at 171 | 172 | http://www.apache.org/licenses/LICENSE-2.0 173 | 174 | Unless required by applicable law or agreed to in writing, software 175 | distributed under the License is distributed on an "AS IS" BASIS, 176 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 177 | See the License for the specific language governing permissions and 178 | limitations under the License. 179 | ``` 180 | 181 | 182 | 183 | -------------------------------------------------------------------------------- /README_TR.md: -------------------------------------------------------------------------------- 1 | # android-resources 2 | Android geliştirme kaynaklari 3 | 4 | [English version](https://github.com/Tikitoo/android-resources/blob/master/README.md) 5 | 6 | [中文版](https://github.com/Tikitoo/android-resources/blob/master/README_ZH.md) 7 | 8 | [Türkçe versiyon](https://github.com/Tikitoo/android-resources/blob/master/README_TR.md) 9 | 10 | 11 | ## Java 12 | 13 | 14 | - [Introduction to Programming in Java: An Interdisciplinary Approach](http://introcs.cs.princeton.edu/java/home/) 15 | - [Java Tutorial - TutorialSpoint](http://www.tutorialspoint.com/java/) 16 | - [Java Tutorial PDF](http://www.tutorialspoint.com/java/java_tutorial.pdf) 17 | - [Javanotes 7.0 -- Title Page](http://math.hws.edu/eck/cs124/downloads/javanotes7.pdf) 18 | [Pure Java](http://www.injavawetrust.com/java) 19 | [Kodcu.com](http://www.kodcu.com) 20 | 21 | ## Başlangıç 22 | 23 | - [Getting Started | Android Developers](https://developer.android.com/training/index.html) 24 | - [How to get started programming Android apps | HalfApp](http://halfapp.com/blog/get-started-programming-android-apps/) 25 | - [A step by step guide about how to get started and involved in Android Development - Reddit](http://www.reddit.com/r/Android/comments/1w3woc/a_step_by_step_guide_about_how_to_get_started_and/) 26 | - [Beginning Android Resources · codepath/android_guides Wiki](https://github.com/codepath/android_guides/wiki/Beginning-Android-Resources) 27 | 28 | ## Kitaplar 29 | 30 | - [ The Busy Coder's Guide to Android Development](http://commonsware.com/Android/) 31 | - [Best Android Books and Resources 2014](http://nimooli.com/blog/best-android-books-2014/) 32 | 33 | ## Ücretsiz Kurslar 34 | 35 | - [How to Develop Android Apps Online Course - Udacity](https://www.udacity.com/course/ud853) 36 | - [Programming Mobile Applications for Android (Coursera)](https://class.coursera.org/android-001/lecture) 37 | - [Android Development For Absolute Beginners - YouTube](https://www.youtube.com/playlist?list=PLB03EA9545DD188C3) 38 | 39 | ## Öğretim Serileri 40 | 41 | - [Home · codepath/android_guides Wiki - codepath](https://github.com/thecodepath/android_guides/wiki) 42 | - [Android tutorial - TutorialSpoint](http://www.tutorialspoint.com/android/index.htm) 43 | - [Android Development - Vogella](http://www.vogella.com/tutorials/android.html) 44 | - [AndroidHive | Tutorials, Games, Apps, Tips |](http://androidhive.info/) 45 | - [Android Tutorial | Interactive and Step by step tutorial to learn Android](http://www.codelearn.org/android-tutorial/) 46 | - [Android SDK - Tuts+ Code Category](https://code.tutsplus.com/categories/android-sdk) 47 | - [Android Programming Archives - Learn2Crack](http://www.learn2crack.com/category/androidprogramming) 48 | - [Android Learning Path | SlideRule](https://www.mysliderule.com/learning-paths/android/learn/) 49 | 50 | ## Günlük Yazılar 51 | 52 | - [android-cn/android-dev-cn](https://github.com/android-cn/android-dev-cn) 53 | - [android-cn/android-dev-com](https://github.com/android-cn/android-dev-com) 54 | - [What are must-read Android developer blogs? - Quora](http://www.quora.com/What-are-must-read-Android-developer-blogs) 55 | - [有哪些 Android 大牛的 blog 值得推荐? - 知乎](http://www.zhihu.com/question/19775981) 56 | 57 | ## Açık kaynak uygulamalar 58 | 59 | 60 | - [F-Droid | Free and Open Source Android App Repository](https://f-droid.org/) 61 | - [Android优秀开源项目 - 小猪爬爬](http://blog.tisa7.com/android_open_source_projects) 62 | - [The Android Arsenal - A categorized directory of free libraries and tools for Android](https://android-arsenal.com/) 63 | - [Trinea/android-open-project - Trinea](https://github.com/Trinea/android-open-project) 64 | 65 | ## Geliştirici Araçları 66 | 67 | 68 | - [Great Code Examples & Snippets | Codota](http://www.codota.com/) 69 | - [Gradle](http://www.gradleware.com/) 70 | - [Android Studio]() 71 | - [Android User Interface | User Experience | Inspiration source for Android Designers and Developers](http://androiduiux.com) 72 | - [Android App Patterns](http://www.android-app-patterns.com/) 73 | - [Iconfinder - 400,000+ free and premium icons](https://www.iconfinder.com/) 74 | - [google/material-design-icons - github](https://github.com/google/material-design-icons) 75 | - [inferjay/AndroidDevTools](https://github.com/inferjay/AndroidDevTools) 76 | - [Genymotion - A faster Android emulator](https://www.genymotion.com/) 77 | 78 | ## Haberler 79 | 80 | - [Android 周刊](http://androidweekly.net/) 81 | - [Android开发技术周报](http://www.androidweekly.cn/) 82 | - [码农周刊 - Android](https://github.com/nemoTyrant/manong#ANDROID) 83 | 84 | 85 | ## Kaynaklar 86 | 87 | - [Best resources for Android development](http://www.androidauthority.com/best-resources-android-development-372414/) 88 | - [Resources every Android developer must know](http://www.bongizmo.com/blog/android-resources-each-developer-should-know/) 89 | - [Android开发者必知的开发资源 - ImportNew](http://www.importnew.com/3988.html) 90 | - [开发资源 | Android 沉思录](http://yeungeek.com/awesome-resources/) 91 | - [Android Developer Resources, Tutorials, and References — Being Apptentive](http://www.apptentive.com/blog/programming-resources-for-android-developers/) 92 | - [Beginning Android Resources · codepath/android_guides Wiki](https://github.com/codepath/android_guides/wiki/Beginning-Android-Resources) 93 | - [Android开发者资源大汇总 - Android开发周刊 - 博客园](http://www.cnblogs.com/mainroadlee/p/android_resources_list.html) 94 | - [awesome-android - github](https://github.com/snowdream/awesome-android) 95 | - [Where To Start - Learning Android Development the Right Way - Kevin Darty - Google+](https://plus.google.com/+KevinDarty/posts/Qex6Ae6zhZW) 96 | - [resources - androiddev reddit](http://www.reddit.com/r/androiddev/wiki/resources) 97 | 98 | 99 | ## License 100 | ``` 101 | Copyright 2015 Tikitoo 102 | 103 | Licensed under the Apache License, Version 2.0 (the "License"); 104 | you may not use this file except in compliance with the License. 105 | You may obtain a copy of the License at 106 | 107 | http://www.apache.org/licenses/LICENSE-2.0 108 | 109 | Unless required by applicable law or agreed to in writing, software 110 | distributed under the License is distributed on an "AS IS" BASIS, 111 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 112 | See the License for the specific language governing permissions and 113 | limitations under the License. 114 | ``` 115 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- 1 | # Android 资源 2 | Android 开发资料 3 | 4 | [English version](https://github.com/Tikitoo/android-resources/blob/master/README.md) 5 | 6 | [中文版](https://github.com/Tikitoo/android-resources/blob/master/README_ZH.md) 7 | 8 | 9 | 10 | ## Java 学习 11 | - [Introduction to Programming in Java: An Interdisciplinary Approach](http://introcs.cs.princeton.edu/java/home/) 12 | - [Java Tutorial - TutorialSpoint](http://www.tutorialspoint.com/java/) 13 | - [Java Tutorial PDF](http://www.tutorialspoint.com/java/java_tutorial.pdf) 14 | - [Javanotes 7.0 -- Title Page](http://math.hws.edu/eck/cs124/downloads/javanotes7.pdf) 15 | - [Head First Java](http://shop.oreilly.com/product/9780596009205.do)([中文版](http://item.jd.com/10222740.html)) 16 | - [Think in Java](http://www.amazon.com/Thinking-Java-4th-Bruce-Eckel/dp/0131872486)([中文版](http://search.jd.com/Search?keyword=Java%E7%BC%96%E7%A8%8B%E6%80%9D%E6%83%B3&enc=utf-8&pvid=3k9neboi.t8qd1i)) 17 | 18 | 19 | 20 | 21 | ## 入门指南 22 | - [Getting Started | Android Developers](https://developer.android.com/training/index.html) 23 | - [How to get started programming Android apps | HalfApp](http://halfapp.com/blog/get-started-programming-android-apps/) 24 | - [A step by step guide about how to get started and involved in Android Development - Reddit](http://www.reddit.com/r/Android/comments/1w3woc/a_step_by_step_guide_about_how_to_get_started_and/) 25 | - [Beginning Android Resources · codepath/android_guides Wiki](https://github.com/codepath/android_guides/wiki/Beginning-Android-Resources) 26 | - [写给Android 开发的入门教程 | Tikitoo Blog](http://tikitoo.github.io/2015/08/23/android-developer-tutorial/) 27 | - [如何自学Android | Gityuan博客](http://gityuan.com/2016/04/24/how-to-study-android/) 28 | 29 | 30 | 31 | 32 | 33 | ## 书籍推荐 34 | - [ The Busy Coder's Guide to Android Development](http://commonsware.com/Android/) 35 | - [Best Android Books and Resources 2014](http://nimooli.com/blog/best-android-books-2014/) 36 | - [第一行代码]() 37 | - [Android Programming: The Big Nerd Ranch Guide (2nd Edition)(Android 编程:权威指南)]() 38 | - [Head First Android Development(深入浅出Android 开发)]() 39 | - [Android 群英传]() 40 | - [《Android 开发艺术探索》]() 41 | - [《Android 设计模式源码分析》]() 42 | - [《Android 开发精要》]() 43 | - [《App 研发录》]() 44 | 45 | 46 | 47 | 48 | ## 公开课 49 | - [How to Develop Android Apps Online Course - Udacity](https://www.udacity.com/course/ud853) 50 | - [Programming Mobile Applications for Android (Coursera)](https://class.coursera.org/android-001/lecture) 51 | - [Android Development For Absolute Beginners - YouTube](https://www.youtube.com/playlist?list=PLB03EA9545DD188C3) 52 | 53 | 54 | 55 | 56 | ## 系列教程 57 | - [Home · codepath/android_guides Wiki - codepath](https://github.com/thecodepath/android_guides/wiki) 58 | - [Android tutorial - TutorialSpoint](http://www.tutorialspoint.com/android/index.htm) 59 | - [Android Development - Vogella](http://www.vogella.com/tutorials/android.html) 60 | - [AndroidHive | Tutorials, Games, Apps, Tips |](http://androidhive.info/) 61 | - [Android Tutorial | Interactive and Step by step tutorial to learn Android](http://www.codelearn.org/android-tutorial/) 62 | - [Android SDK - Tuts+ Code Category](https://code.tutsplus.com/categories/android-sdk) 63 | - [Android Programming Archives - Learn2Crack](http://www.learn2crack.com/category/androidprogramming) 64 | - [Android Learning Path | SlideRule](https://www.mysliderule.com/learning-paths/android/learn/) 65 | 66 | 67 | 68 | 69 | ## 大牛博客推荐 70 | - [android-cn/android-dev-cn](https://github.com/android-cn/android-dev-cn) 71 | - [android-cn/android-dev-com](https://github.com/android-cn/android-dev-com) 72 | - [What are must-read Android developer blogs? - Quora](http://www.quora.com/What-are-must-read-Android-developer-blogs) 73 | - [有哪些 Android 大牛的 blog 值得推荐? - 知乎](http://www.zhihu.com/question/19775981) 74 | 75 | 76 | 77 | 78 | ## 开源App 79 | - [F-Droid | Free and Open Source Android App Repository](https://f-droid.org/) 80 | - [Android优秀开源项目 - 小猪爬爬](http://blog.tisa7.com/android_open_source_projects) 81 | - [The Android Arsenal - A categorized directory of free libraries and tools for Android](https://android-arsenal.com/) 82 | - [Trinea/android-open-project - Trinea](https://github.com/Trinea/android-open-project) 83 | 84 | 85 | 86 | 87 | 88 | ## 开源项目 89 | - [LittleFriendsGroup/AndroidSdkSourceAnalysis](https://github.com/LittleFriendsGroup/AndroidSdkSourceAnalysis) 90 | 91 | 92 | 93 | 94 | 95 | ## 开发工具 96 | - [推荐几款实用的Android Studio 插件](http://www.jianshu.com/p/6f5f818afe4b) 97 | - [Android Studio有哪些非常好用的插件? - 知乎](https://www.zhihu.com/question/28527388) 98 | - [有什么好用的Android Studio的插件值得推荐? - 知乎](https://www.zhihu.com/question/28026027) 99 | - [Great Code Examples & Snippets | Codota](http://www.codota.com/) 100 | - [Gradle](http://www.gradleware.com/) 101 | - [Android Studio]() 102 | - [Android User Interface | User Experience | Inspiration source for Android Designers and Developers](http://androiduiux.com) 103 | - [Android App Patterns](http://www.android-app-patterns.com/) 104 | - [Iconfinder - 400,000+ free and premium icons](https://www.iconfinder.com/) 105 | - [google/material-design-icons - github](https://github.com/google/material-design-icons) 106 | - [inferjay/AndroidDevTools](https://github.com/inferjay/AndroidDevTools) 107 | - [Genymotion - A faster Android emulator](https://www.genymotion.com/) 108 | 109 | 110 | 111 | 112 | ## 订阅 113 | - [Android 周刊](http://androidweekly.net/) 114 | - [Android开发技术周报](http://www.androidweekly.cn/) 115 | - [码农周刊 - Android](https://github.com/nemoTyrant/manong#ANDROID) 116 | - [Android 科学院](http://zhuanlan.zhihu.com/andlib) 117 | - [开发技术前线](http://www.devtf.cn/?cat=2) 118 | - [App开发日报](http://app.memect.com/) 119 | - [移动开发每周阅读清单](http://mobilefrontier.github.io/) 120 | - [Android 周报](http://www.race604.com/tag/Android-Weekly/) 121 | - [干货集中营](http://gank.io/) 122 | - [The Android Arsenal](http://android-arsenal.com/) 123 | - [codeKK ](http://a.codekk.com/) 124 | - [Android Blog 周刊](http://androidblog.cn/) 125 | - [Android Dev](http://www.jianshu.com/collection/6e31b7354a48) 126 | - [Android 开发经验谈](http://www.jianshu.com/collection/5139d555c94d) 127 | 128 | 129 | 130 | 131 | ## 资源 132 | - [Best resources for Android development](http://www.androidauthority.com/best-resources-android-development-372414/) 133 | - [Resources every Android developer must know](http://www.bongizmo.com/blog/android-resources-each-developer-should-know/) 134 | 中文版——《- [Android开发者必知的开发资源 - ImportNew](http://www.importnew.com/3988.html) 135 | 》,译者是ImportNew - 黄小非 136 | - [开发资源 | Android 沉思录](http://yeungeek.com/awesome-resources/) 137 | - [Android Developer Resources, Tutorials, and References — Being Apptentive](http://www.apptentive.com/blog/programming-resources-for-android-developers/) 138 | - [Beginning Android Resources · codepath/android_guides Wiki](https://github.com/codepath/android_guides/wiki/Beginning-Android-Resources) 139 | - [Android开发者资源大汇总 - Android开发周刊 - 博客园](http://www.cnblogs.com/mainroadlee/p/android_resources_list.html) 140 | - [awesome-android - github](https://github.com/snowdream/awesome-android) 141 | - [Where To Start - Learning Android Development the Right Way - Kevin Darty - Google+](https://plus.google.com/+KevinDarty/posts/Qex6Ae6zhZW) 142 | - [resources - androiddev reddit](http://www.reddit.com/r/androiddev/wiki/resources) 143 | - [整理一些比较好的Android开发教程](http://bxbxbai.github.io/2014/10/07/android-develop-resource/) 144 | 145 | 146 | 147 | 148 | 149 | ## 优化 & 架构 150 | - [codeKK 开源项目源码分析](http://a.codekk.com/) 151 | - [Android Best Practices(Android 最佳实践)](https://github.com/futurice/android-best-practices) 152 | - [Android Clean Architecture(Android 整洁的架构)](https://github.com/android10/Android-CleanArchitecture) 153 | - [代码规范和Android项目中的一些可用工具](http://tech.glowing.com/cn/dai-ma-gui-fan-he-androidxiang-mu-zhong-de-xie-ke-yong-gong-ju/#) 154 | - [Android 命名规范 (提高代码可以读性)](http://blog.csdn.net/vipzjyno1/article/details/23542617) 155 | 156 | 157 | 158 | 159 | ## License 160 | ``` 161 | Copyright 2016 Tikitoo 162 | 163 | Licensed under the Apache License, Version 2.0 (the "License"); 164 | you may not use this file except in compliance with the License. 165 | You may obtain a copy of the License at 166 | 167 | http://www.apache.org/licenses/LICENSE-2.0 168 | 169 | Unless required by applicable law or agreed to in writing, software 170 | distributed under the License is distributed on an "AS IS" BASIS, 171 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 172 | See the License for the specific language governing permissions and 173 | limitations under the License. 174 | ``` 175 | --------------------------------------------------------------------------------