├── .gitattributes ├── Android.java ├── README.md └── 简历模板 ├── 简历模板1.docx ├── 简历模板1.pdf ├── 简历模板2.docx ├── 简历模板2.pdf ├── 简历模板3.docx └── 简历模板3.pdf /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java -------------------------------------------------------------------------------- /Android.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | public class Android{ 5 | public void say(){ 6 | System.out.println("If you like , Please star me!"); 7 | } 8 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # StudyForAndroid 2 | # 这是你不应该错过的一本百科全书,开源资料持续更新中~ 3 | 4 | #### 欢迎加入开发交流QQ群:118116509 Android神技侧漏交流群( 点击图标即可加入 )
5 | ### 欢迎贡献Pull requests, 我会根据内容 Merge. 6 | 7 | ## 一、写在前面 8 | 给大家献上一些福利,这些项目要么是 GitHub 上影响力很大,要么是对你们很有用的项目: 9 | 【本文部分内容资源参照帅比张:http://stormzhang.com/ 】   10 | 11 | 12 | 13 | #### 1、free-programming-books 14 | 15 | [https://github.com/vhf/free-programming-books](https://github.com/vhf/free-programming-books) 16 | 17 | 这个项目目前 star 数排名 GitHub 第三,总 star 数超过6w,这个项目整理了所有跟编程相关的免费书籍,而且全球多国语言版的都有,,有了这个项目,理论上你可以获取任何编程相关的学习资料,强烈推荐给你们! 18 | 19 | 20 | 21 | #### 2、oh-my-zsh 22 | [https://github.com/robbyrussell/oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh) 23 | 24 |   俗话说,不会用 shell 的程序员不是真正的程序员,所以建议每个程序员都懂点 shell,有用不说,装逼利器啊!而 oh-my-zsh 毫无疑问就是目前最流行,最酷炫的 shell,不多说了,懂得自然懂,不懂的以后你们会懂的! 25 | 26 | 27 | 28 | #### 3、awesome 29 | 30 | https://github.com/sindresorhus/awesome 31 | 32 |   GitHub 上有各种 awesome 系列,简单来说就是这个系列搜罗整理了 GitHub 上各领域的资源大汇总,比如有 awesome-android, awesome-ios, awesome-java, awesome-python 等等等。 33 | 34 | 35 | 36 | 37 | #### 4、github-cheat-sheet 38 | 39 | https://github.com/tiimgreen/github-cheat-sheet/ 40 | 41 |   GitHub 的使用有各种技巧,只不过基本的就够我们用了,但是如果你对 GitHub 超级感兴趣,想更多的了解 GitHub 的使用技巧,那么这个项目就刚好是你需要的,每个 GitHub 粉都应该知道这个项目。 42 | 43 | 44 | 45 | 46 | #### 5、android-open-project 47 | 48 | https://github.com/Trinea/android-open-project 49 | 50 |   这个项目是Trinea 整理的一个项目,基本囊括了所有 GitHub 上的 Android 优秀开源项目,但是缺点就是内容太多了不适合快速搜索定位,但是身为 Android 开发无论如何你们应该知道这个项目。 51 | 52 | 53 | 54 | 55 | 56 | #### 6、awesome-android-ui 57 | 58 | https://github.com/wasabeef/awesome-android-ui 59 | 60 |   这个项目跟上面的区别是,这个项目只整理了所有跟 Android UI 相关的优秀开源项目,基本你在实际开发中用到的各种效果上面都几乎能找到类似的,简直是 UI 开发必备。 61 | 62 | 63 | 64 | 65 | #### 7、Android_Data 66 | 67 | https://github.com/Freelander/Android_Data 68 | 69 |   这个项目是张哥的邪教群的一位管理员整理的,几乎包括了国内各种学习 Android 的资料,简直太全了,他为这个项目也稍微出了点力,强烈推荐你们收藏起来。 70 | 71 | 72 | 73 | 74 | #### 8、AndroidInterview-Q-A 75 | 76 | https://github.com/JackyAndroid/AndroidInterview-Q-A/blob/master/README-CN.md 77 | 78 |   这个就不多说了,干货无疑,之前给大家推荐过的,国内一线互联网公司内部面试题库。 79 | 80 | 81 | 82 | 83 | #### 9、LearningNotes 84 | 85 | https://github.com/GeniusVJR/LearningNotes 86 | 87 |   这是一份非常详细的面试资料,涉及 Android、Java、设计模式、算法等等等,你能想到的,你不能想到的基本都包含了,可以说是适应于任何准备面试的 Android 开发者,看完这个之后别说你还不知道怎么面试! 88 | 89 | 90 | 91 | #### 10、AndroidUtilCode 92 | 93 | https://github.com/Blankj/AndroidUtilCode 94 | 95 |   如果你是Android开发者,这个东西绝对不容错过,这是楼主最新发掘的超级好用的各种工具类集合,还在犹豫什么,快去看看吧。 96 | 97 | 98 | #### 11、Kotlin 99 |   100 | https://www.kotlincn.net/docs/reference/ 101 | 102 |   Kotlin被炒的这么火,随着Kotlin被Android作为官方推荐语言,那有没有一个合适的中文学习网站呢?没错,这个网站你一定需要。   103 | 104 | #### 12、RxJava2 105 | https://github.com/nanchen2251/RxJava2Examples 106 | 107 |   这是笔者自己写的 RxJava 2.x 系列的代码(附带技术文章),有兴趣的可以看看~ 108 | #### 13、RxJava2 中文文档翻译 109 | https://github.com/mcxiaoke/RxDocs 110 | 111 |   oh,这真是夸张,无意间发现了这么一个好东西,对于一些看英文文档比较吃力的小伙伴,真的是福利满满,里面不仅包含Rx系列的中文翻译,其它出名的框架资料也有外链接哦,快去看看吧~ 112 | 113 | #### 14、 awesome-adb 114 | https://github.com/mzlogin/awesome-adb 115 | 116 |   这是一个非常棒的 ADB 命令行总结,托管于 GitHub ,内容齐全,排版精美,囊括了平时开发测试中常用的和不常用的各种命令,并且持续更新中,推荐大家关注一下。 117 | 118 | 119 | #### 15、 Git 使用教程详解 120 | http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000 121 | 122 |   这是廖雪峰大神总结的 Git 教程,可谓非常全面,涵盖面非常广。不管你是用 GitHub 还是 Git 作为版本控制工具,我想此教程是你必看的。 123 | 124 | #### 16、 Android 面试题整理 125 | https://github.com/MindorksOpenSource/android-interview-questions (amitshekhariitbhu) 126 | https://github.com/stormzhang/android-interview-questions-cn (stormzhang) 127 | 128 |   面试依然是亘古不变的话题,amitshekhariitbhu 大神为我们做了 Android 的面试问题整理,无奈只有英文的。不过帅比张和他的朋友们励志为 Android 乃至更大的领域提供中文版本,所以有了第二个地址。 129 | 130 | 131 | #### 17、 React-native-guide 132 | https://github.com/reactnativecn/react-native-guide 133 | 134 |   也许你会很奇怪,为什么我收录了前端的 React-native 的学习资料,想必我不用多说了吧。懂的人自然懂。该库包含了全面的 RN 学习指南,不容错过。 135 | 136 | #### 17、 RxJava 线下活动视频及其文档 137 | https://github.com/zhihu/zhihu-rxjava-meetup 138 | 139 |   扔物线大神朱凯结合知乎 Android 技术开发团队在北京进行了非常 Nice 的 RxJava 在 Android 中的开发交流,带了视频和 PPT,扔物线朱凯,业界良心。视频已经查看,推荐关注。 140 | 141 | ### 关于作者 142 |    南尘
143 |    四川成都
144 |    [其它开源](https://github.com/nanchen2251/)
145 |    [个人博客](https://nanchen2251.github.io/)
146 |    [简书](http://www.jianshu.com/u/f690947ed5a6)
147 |    [博客园](http://www.cnblogs.com/liushilin/)
148 |    欢迎投稿(关注)我的唯一公众号,公众号搜索 nanchen 或者扫描下方二维码:
149 |    ![](http://images2015.cnblogs.com/blog/845964/201707/845964-20170718083641599-1963842541.jpg) 150 | 151 | #### 有码走遍天下 无码寸步难行(引自网络) 152 | 153 | > 1024 - 梦想,永不止步! 154 | 爱编程 不爱Bug 155 | 爱加班 不爱黑眼圈 156 | 固执 但不偏执 157 | 疯狂 但不疯癫 158 | 生活里的菜鸟 159 | 工作中的大神 160 | 身怀宝藏,一心憧憬星辰大海 161 | 追求极致,目标始于高山之巅 162 | 一群怀揣好奇,梦想改变世界的孩子 163 | 一群追日逐浪,正在改变世界的极客 164 | 你们用最美的语言,诠释着科技的力量 165 | 你们用极速的创新,引领着时代的变迁 166 | 167 | ------至所有正在努力奋斗的程序猿们!加油!! 168 | 169 | ## Licenses 170 | ``` 171 | Copyright 2017 nanchen(刘世麟) 172 | 173 | Licensed under the Apache License, Version 2.0 (the "License"); 174 | you may not use this file except in compliance with the License. 175 | You may obtain a copy of the License at 176 | 177 | http://www.apache.org/licenses/LICENSE-2.0 178 | 179 | Unless required by applicable law or agreed to in writing, software 180 | distributed under the License is distributed on an "AS IS" BASIS, 181 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 182 | See the License for the specific language governing permissions and 183 | limitations under the License. 184 | ``` 185 | -------------------------------------------------------------------------------- /简历模板/简历模板1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanchen2251/StudyForAndroid/b19338b0f9f04702caf94d3ad165011d2114c91e/简历模板/简历模板1.docx -------------------------------------------------------------------------------- /简历模板/简历模板1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanchen2251/StudyForAndroid/b19338b0f9f04702caf94d3ad165011d2114c91e/简历模板/简历模板1.pdf -------------------------------------------------------------------------------- /简历模板/简历模板2.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanchen2251/StudyForAndroid/b19338b0f9f04702caf94d3ad165011d2114c91e/简历模板/简历模板2.docx -------------------------------------------------------------------------------- /简历模板/简历模板2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanchen2251/StudyForAndroid/b19338b0f9f04702caf94d3ad165011d2114c91e/简历模板/简历模板2.pdf -------------------------------------------------------------------------------- /简历模板/简历模板3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanchen2251/StudyForAndroid/b19338b0f9f04702caf94d3ad165011d2114c91e/简历模板/简历模板3.docx -------------------------------------------------------------------------------- /简历模板/简历模板3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanchen2251/StudyForAndroid/b19338b0f9f04702caf94d3ad165011d2114c91e/简历模板/简历模板3.pdf --------------------------------------------------------------------------------