├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | 19 | # Local configuration file (sdk path, etc) 20 | local.properties 21 | 22 | # Proguard folder generated by Eclipse 23 | proguard/ 24 | 25 | # Log Files 26 | *.log 27 | -------------------------------------------------------------------------------- /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 | TimLiu-Android 2 | ============== 3 | 4 | 自己总结的Android开源项目及库。 github排名 [https://github.com/trending](https://github.com/trending),github搜索:[https://github.com/search](https://github.com/search) 5 | 6 | ### 目录 7 | - [UI](#UI) 8 | 9 | - [卫星菜单](#卫星菜单) 10 | - [节选器](#节选器) 11 | - [下拉刷新](#下拉刷新) 12 | - [模糊效果](#模糊效果) 13 | - [HUD与Toast](#HUD与Toast) 14 | - [进度条](#进度条) 15 | - [UI其它](#UI其他) 16 | - [动画](#动画) 17 | - [网络相关](#网络相关) 18 | - [响应式编程](#响应式编程) 19 | - [地图](#地图) 20 | - [数据库](#数据库) 21 | - [图像浏览及处理](#图像浏览及处理) 22 | - [视频音频处理](#视频音频处理) 23 | - [测试及调试](#测试及调试) 24 | - [动态更新热更新](#动态更新热更新) 25 | - [消息推送](#消息推送) 26 | - [完整项目](#完整项目) 27 | - [插件](#插件) 28 | - [出名框架](#出名框架) 29 | - [其他](#其他) 30 | - [好的文章](#好的文章) 31 | - [收集android上开源的酷炫的交互动画和视觉效果](#收集android上开源的酷炫的交互动画和视觉效果) 32 | - [UI资源](#UI资源) 33 | - [开发资源](#开发资源) 34 | - [他人开源总结](#他人开源总结) 35 | - [中文开发博客列表](#中文开发博客列表) 36 | 37 | ======== 38 | ### 具体内容 ============================= 39 | ======== 40 | ##### UI 41 | * [Awesome-MaterialDesign](https://github.com/lightSky/Awesome-MaterialDesign) - MaterialDesignCenter改名为Awesome-MaterialDesign,优化了布局,新增了不少库。 42 | * [awesome-android-ui](https://github.com/wasabeef/awesome-android-ui) - ui库,非常多的ui及特效。 43 | * [ChipsLibrary](https://github.com/AndroidDeveloperLB/ChipsLibrary) - 在Android EditText中实现打Tag功能。 44 | * [bitmapMesh](https://github.com/7heaven/bitmapMesh) - 拉窗帘效果。 45 | * [ObservableScrollView](https://github.com/ksoichiro/Android-ObservableScrollView) - 在滚动的视图观测滚动事件的Android库 46 | 它易于与在Android 5.0 Lollipop中引入的工具条Toolbar相交互,并能够帮助实现Material Design apps的外观。 47 | * [iconify](https://github.com/JoanZapata/android-iconify) - iconify 图片与文字同一行显示。 48 | * [iosched](https://github.com/google/iosched) - The Google I/O 2014 Android App,Android 5.0 and Material Design。 49 | * [MaterialList](https://github.com/dexafree/MaterialList) - MaterialList 。 50 | * [material design card](https://dribbble.com/search?q=material+design+card) - material design card 。 51 | * [MaterialDesignExample](https://github.com/chenyangcun/MaterialDesignExample) - 本APP用来演示Material Design控件的使用。 52 | http://www.aswifter.com/2015/07/02/Material-Design-Example-5/ , [使用说明](http://www.aswifter.com/2015/08/01/android-material-design-animation/)。 53 | * [InstaMaterial](https://github.com/frogermcs/InstaMaterial) - InstalMaterial 项目(非常多的UI样式:ViewAnimator、RecyclerView、拍照), [InstalMaterial学习笔记之Reveal效果](http://www.jianshu.com/p/35492fb2c269)。 54 | * [NavigationDrawer-MaterialDesign](https://github.com/rudsonlive/NavigationDrawer-MaterialDesign) - 一个Material Design的抽屉模板库,分分钟搭起一个程序框架。 55 | * [MaterialEditText](https://github.com/rengwuxian/MaterialEditText) - 直接继承EditText,无需修改Java文件即能实现自定义控件颜色, [直接拿来用!十大Material Design开源项目](http://www.csdn.net/article/2014-11-21/2822753-material-design-libs)。 56 | * [fab](https://github.com/shell-software/fab) - Floating Action Button library for Android。 57 | * [labelview](https://github.com/linger1216/labelview) - 贴纸效果,如:淘宝商品侧贴折扣。 58 | * [SearchMenuAnim](https://github.com/kongnanlive/SearchMenuAnim) - 一个很棒的带动画的搜索框。 59 | * [SearchAnimation](https://github.com/NiaNingXue/SearchAnimation) - 一个很棒的带动画的搜索框,支持低版本。 60 | * [快速支持emoji表情显示](http://www.eoeandroid.com/thread-567299-1-1.html) - 让项目快速支持emojicon表情的显示,并可判断用户输入的内容中是否含有emojicon表情以及过滤掉emojicon。 61 | * [Context-Menu.Android](https://github.com/Yalantis/Context-Menu.Android) - 可以方便快速集成漂亮带有动画效果的上下文菜单。 62 | * [Titanic](https://github.com/RomainPiel/Titanic) - 可以显示水位上升下降的TextView。 63 | * [AndroidSwipeLayout](https://github.com/daimajia/AndroidSwipeLayout) - 滑动Layout,支持单个View,ListView,GridView,[demo-apk](https://github.com/daimajia/AndroidSwipeLayout/releases/download/v1.0.0/AndroidSwipeLayout-Demo-1.0.1-snapshot.apk)。 64 | * [android-typeface-helper](https://github.com/norbsoft/android-typeface-helper) - Android Typeface Helper 可以帮你轻松实现自定义字体的库。 65 | * [android-lockpattern](https://code.google.com/p/android-lockpattern/) - Android的图案密码解锁, [文档介绍](https://code.google.com/p/android-lockpattern/wiki/QuickUse)。 66 | * [ToggleButton](https://github.com/zcweng/ToggleButton) - 状态切换的 Button,类似 iOS,用 View 实现。 67 | * [android-typeface-helper](https://github.com/norbsoft/android-typeface-helper) - Android Typeface Helper 可以帮你轻松实现自定义字体的库。 68 | * [GuideBackgroundColorAnimation](https://github.com/TaurusXi/GuideBackgroundColorAnimation) - 实现滑动ViewPager渐变背景色。 69 | * [Toolbar](https://github.com/xamarin/monodroid-samples/tree/master/android_l/Toolbar) - Toolbar替换Android Toolbar,[说明](http://blog.xamarin.com/android-tips-hello-toolbar-goodbye-action-bar/)。 70 | * [PagerSlidingTabStrip](https://github.com/jpardogo/PagerSlidingTabStrip) - 一个支持Material Design的PagerSlidingTabStrip。 71 | * [MaterialViewPager](https://github.com/florent37/MaterialViewPager) - 一个易于使用的 Material Design ViewPager 库。 72 | * [PinnedListView](http://www.eoeandroid.com/thread-567853-1-1.html) - PinnedListView悬浮Head效果修改,[github pinned-section-listview](https://github.com/beworker/pinned-section-listview)。 73 | * [APP启动引导页](http://www.eoeandroid.com/thread-564018-1-1.html) - APP应用中最常用的APP启动引导页,常见的4种引导项目方式:splash,viewpage,viewflipper,scrollview。 74 | * [AwesomeText](https://github.com/JMPergar/AwesomeText) - 简化TextViews中Spans使用的库。 75 | * [dialogplus](https://github.com/orhanobut/dialogplus) - 一个简单容易使用的对话框——DialogPlus。 76 | * [material-dialogs](https://github.com/afollestad/material-dialogs) - Material Design风格Dialogs。 77 | * [CardView](https://github.com/chiemy/CardView) - 3d卡片效果-国人。 78 | * [FilterMenu](https://github.com/linroid/FilterMenu) - 这是一个自定义的圆形菜单,效果非常酷。 79 | * [GridPasswordView](https://github.com/Jungerr/GridPasswordView) - 类似微信,支付宝支付时候的输入密码页面效果,带格子的密码输入框。 80 | * [PersistentSearch](https://github.com/Quinny898/PersistentSearch) - 模仿Google Now, Google Maps Google Play的SearchBar,下拉列表匹配、录音。 81 | * [Droppy](https://github.com/shehabic/Droppy) - Android 下简洁好看的 Dropdown 菜单。 82 | * [UltimateRecyclerView](https://github.com/cymcsg/UltimateRecyclerView) - 这是一个终极的 RecyclerView,有下拉刷新、滑动删除、拖拽、加载更多、丰富动画等功能。 83 | * [SmartTabLayout](https://github.com/ogaclejapan/SmartTabLayout) - SmartTabLayout实现viewpgaer页面导航效果,简化并实现android的TabHost效果,顶部滑动tab,引导页,可以自定义tab样式,过渡效果 实现网易tab,微博tab,微信tab等so easy。 集成了SpringIndicator拖拽效果 。 84 | * [richeditor](https://github.com/wasabeef/richeditor-android) - RichEditor for Android 是 Android 平台下一个所见即所得的文本编辑器控件。 85 | 86 | * [StatedFragment](https://github.com/nuuneoi/StatedFragment) - 保存Fragment的状态。 87 | * [PopoverView](https://github.com/lupidan/PopoverView) - 一个模仿iOS UIPopoverController效果的控件。 88 | * [CreditsRoll](https://github.com/frakbot/CreditsRoll) - 实现星球大战字幕效果。 89 | * [MatchView](https://github.com/Rogero0o/MatchView) - 电影级TextView动画效果,绝对惊艳你的双眼!。 90 | * [SwipeMenuListView](https://github.com/baoyongzhang/SwipeMenuListView) - listView侧滑删除效果:SwipeMenuListView。 91 | * [Side-Menu.Android](https://github.com/Yalantis/Side-Menu.Android) - 分类侧滑菜单。 92 | * [SlidingMenu](https://github.com/xudafeng/SlidingMenu) - 炫酷侧滑菜单布局框架,iOS版本的实现:[SlideMenuView](https://github.com/xudafeng/SlideMenuView)。 93 | * [ParallaxSwipeBack](https://github.com/bushijie/ParallaxSwipeBack) - 带视觉差的侧滑返回,类似于新版微信和lofter的侧滑返回效果。核心代码小于50行。 94 | * [AndroidFlowLayout](https://github.com/LyndonChin/AndroidFlowLayout) - A flow layout for Android。 95 | * [ViewPagerIndicator](https://github.com/LuckyJayce/ViewPagerIndicator) - 取代TabHost,实现滑动tab,引导页等效果。 96 | * [Android-ScreenSlidePager](https://github.com/LyndonChin/Android-ScreenSlidePager) - Full screen slide pager to display images fetched from Internet by Picasso。 97 | * [MaterialViewPager](https://github.com/florent37/MaterialViewPager) - MaterialViewPager。 98 | * [FlipViewPager.Draco](https://github.com/Yalantis/FlipViewPager.Draco) - FlipViewPager.Draco。 99 | * [android-shape-imageview](https://github.com/siyamed/android-shape-imageview) - 图片圆角、三角、五角、圆形、多角。 100 | * [NotBoringActionBar](https://github.com/flavienlaurent/NotBoringActionBar) - 隐藏图片的导航栏。 101 | * [MultiCardMenu](https://github.com/wujingchao/MultiCardMenu) - 仿QQ手机管家首页菜单写的一个开源组件MultiCardMenu。 102 | * [fit-chart](https://github.com/txusballesteros/fit-chart) - fit-chart 一个类似于谷歌健康应用的轮子(wheel view)视图,效果很不错。 103 | * [BGABadgeView-Android](https://github.com/bingoogolapple/BGABadgeView-Android) - Badge控件分享,各式各样的徽章控件。 104 | * [Android-ItemTouchHelper-Demo](https://github.com/iPaulPro/Android-ItemTouchHelper-Demo) - 可拖拽 RecyclerView, [讲解](http://www.devtf.cn/?p=795)。 105 | * [浮动操作按钮详解](http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/0718/3197.html) - 讲解浮动操作按钮,从官方的和第三方库[makovkastar/FloatingActionButton](https://github.com/futuresimple/android-floating-action-button) 和 [futuresimple/android-floating-action-button](https://github.com/makovkastar/FloatingActionButton) 这样的第三方库。的两方面讲解,同时还讲到了如何自定义CoordinatorLayout Behavior。 106 | * [advanced-textview](https://github.com/chiuki/advanced-textview) - advanced-textview各种高级功能的textview,包括动画,阴影,各种字体,艺术字,HTML格式显示,表情等。 107 | * [QuickReturn](https://github.com/lawloretienne/QuickReturn) - 给几乎所有可以滑动的 View 加上快速返回的 Header 或者 Footer,使用非常方便。 108 | * [Android-PickerView](https://github.com/saiwu-bigkoo/Android-PickerView) - 仿iOS的PickerView控件,有时间选择和选项选择并支持一二三级联动效果。 109 | * [idisfkj.picker](https://github.com/idisfkj/idisfkj.picker) - 滑轮选择器,[教程](https://segmentfault.com/a/1190000004595715)。 110 | * [DraggedViewPager](https://github.com/yueban/DraggedViewPager) - 可以在多个 Page 之间可以拖放元素的控件。 111 | * [MultiViewPager](https://github.com/Pixplicity/MultiViewPager) - 对 ViewPager 的一个扩展,Page 可宽可窄,表现很像 Gallelry。 112 | * [Android-Week-View](https://github.com/alamkanak/Android-Week-View) - Android Week View是一种用于应用程序中显示日历的安卓库。它支持自定义样式。。 113 | * [MaterialCalendarView](https://github.com/jonisaa/MaterialCalendarView) - 是一款遵循 Material Design 风格的 Android 日历。 114 | * [WeekCalendar](https://github.com/nomanr/WeekCalendar) - 周模式的日历自定义控件,支持 4.0 以上。 115 | * [DragLinearLayout](https://github.com/justasm/DragLinearLayout) - DragLinearLayout:自定义的线性布局,里面的UI可以自由拖动。 116 | * [floatingsearchview](https://github.com/arimorty/floatingsearchview) - floatingsearchview 一个带搜索下拉列表提示的搜索控件。 117 | * [LabelView](https://github.com/corerzhang/LabelView) - LabelView 一个简单的标签控件 支持自定义 文字大小(textSize), 间距(labelTopPadding), 背景色(backgroundColor), 和方向(direction)等。 118 | * [MaterialCalendarView](https://github.com/jonisaa/MaterialCalendarView) - 是一款遵循 Material Design 风格的 Android 日历。 119 | * [SlideDetailsLayout](https://github.com/cnbleu/SlideDetailsLayout) - SlideDetailsLayout:高仿淘宝、京东商品详情页面的上拉加载图文详情功能。 120 | 121 | ##### 卫星菜单 122 | * [android-satellite-menu](https://github.com/siyamed/android-satellite-menu) - 点击主按钮,会弹出多个围绕着主按钮排列的子按钮,从而形成一个弹出式菜单。子按钮弹出和消失的动画效果都很棒。这种弹出式菜单按钮应用在Path app中。 123 | * [ArcMenu](https://github.com/daCapricorn/ArcMenu) - 实现弹出式按钮群(菜单)。点击主按钮,会在住按钮旁边弹出多个按钮(菜单)。弹出的按钮有两种排列形式,一种是围绕着主按钮成圆弧形排列,一种是和主按钮并排成一字型排列, 仿Path 2.0 (for iOS)。 124 | * [Radial Menu Widget](http://d.apkbus.com/android/Radial-Menu-Widget/52405aca6803fa2822000002) - 实现各种圆形或者半圆形菜单,以及圆形进度条。 125 | * [android-circlebutton](https://github.com/markushi/android-circlebutton) - 圆形按钮,有动画点击效果。 126 | * [CircularFloatingActionMenu](https://github.com/oguzbilgener/CircularFloatingActionMenu) - 卫星菜单。 127 | * [ElasticDownload](https://github.com/Tibolte/ElasticDownload) - 挺酷的下载进度条。 128 | 129 | ##### 节选器 130 | * [SegmentView](https://github.com/bboyfeiyu/SegmentView) - 类似iOS的Segment Control控件,第一种方式是使用 RadioGroup 实现,O网页链接。 131 | * [SHSegmentControl](https://github.com/7heaven/SHSegmentControl) - 类似iOS的Segment Control控件,此种方式的可定制化更好。 132 | * [android-segmentedradiobutton](https://github.com/vinc3m1/android-segmentedradiobutton) - 在Android中实现类似iOS的分段单选按钮(segmented control),本人以前项目一直使用,值得拥有。 133 | * [android-segmented-control](https://github.com/hoang8f/android-segmented-control) - RadioGroup实现类似ios的分段选择(UISegmentedControl)控件。 134 | 135 | 136 | ##### 下拉刷新 137 | * [Android-Ptr-Comparison](https://github.com/desmond1121/Android-Ptr-Comparison) - Android 下拉刷新开源库对比,非常nice!! 138 | * [Android-PullToRefresh](https://github.com/chrisbanes/Android-PullToRefresh) - 最经典、最多人用的下拉刷新、加载更多。 139 | * [PullDownListView](https://github.com/guojunyi/PullDownListView) - 一个下拉刷新的控件,实现了仿微信下拉中眼睛动画的效果。 140 | * [DragTopLayout](https://github.com/chenupt/DragTopLayout) - 实现整个layout下拉刷新。 141 | * [ZrcListView](https://github.com/zarics/ZrcListView) - 一个顺滑又漂亮的Android下拉刷新与加载更多列表组件,增加下拉刷新及滚动到底部自动加载的功能;增加越界回弹效果;增加自定义列表项动画的功能。 142 | * [TwitterCover-Android](https://github.com/cyndibaby905/TwitterCover-Android) - Twitter Android客户端的下拉封面模糊效果。 143 | * [android-Ultra-Pull-To-Refresh](https://github.com/liaohuqiu/android-Ultra-Pull-To-Refresh) - 实现整个layout下拉刷新,没有加载更过,[Demo](https://github.com/android-cn/android-open-project-demo/tree/master/android-ultra-pull-to-refresh-demo), [源码分析](http://codekk.com/open-source-project-analysis/detail/Android/Grumoon/android-Ultra-Pull-To-Refresh%20%E6%BA%90%E7%A0%81%E8%A7%A3%E6%9E%90)。 144 | * [StikkyHeader](https://github.com/carlonzo/StikkyHeader) - 【Android控件源码:头部固定的控件列表效果】这是一个可以支持头部固定的控件列表功能,源码StikkyHeader,StikkyHeader是一个可以在滚动的时候将头部固定的控件,还可以将动画效果和StikkyHeader一起使用,api非常简单, 支持ListView,RecyclerView,ScrollView。[支持2.3一下设备使用的StikkyHeader](https://github.com/yangwuan55/StikkyHeader) 145 | * [PullDownListView](https://github.com/guojunyi/PullDownListView) - 实现了模仿微信眼睛下拉效果,源码PullDownListView,下拉刷新,上拉加载,模仿微信眼睛。 146 | * [CircleRefreshLayout](https://github.com/tuesda/CircleRefreshLayout) - 又一个下拉刷新的实现,水滴效果。 147 | * [BGARefreshLayout-Android](https://github.com/bingoogolapple/BGARefreshLayout-Android) - 多种下拉刷新效果、上拉加载更多、可配置自定义头部广告位,目前已经实现了四种下拉刷新效果:新浪微博下拉刷新风格、慕课网下拉刷新风格、美团下拉刷新风格、类似qq好友列表黏性下拉刷新风格。 148 | * [Pull-to-Refresh.Rentals-Android](https://github.com/Yalantis/Pull-to-Refresh.Rentals-Android) - 提供一个简单可以自定义的下拉刷新实现。 149 | * [Pull-to-Refresh.Tours](https://github.com/Yalantis/Taurus) - Taurus,很精美的下拉刷新。 150 | * [ParallaxListView](https://github.com/Gnod/ParallaxListView) - 模仿Path的下拉刷新,Head头部图片下拉放大。 151 | * [WaveRefreshForAndroid](https://github.com/alienjun/WaveRefreshForAndroid) - 下拉刷新水波纹动画。 152 | * [CoordinatorLayoutDemos](https://github.com/sungerk/CoordinatorLayoutDemos) - 收集了不少资源写了一个基于CoordinatorLayout实现的下拉刷新效果。 153 | * [Android_PullToRefreshLibrary_Collection](https://github.com/TellH/Android_PullToRefreshLibrary_Collection) - 下拉刷新开源库集锦 。 154 | * [HitBlockRefresh](https://github.com/Hitomis/HitBlockRefresh) - 下拉刷新:打砖块和打坦克。 155 | 156 | ##### 模糊效果 157 | * [BlurNavigationDrawer](https://github.com/charbgr/BlurNavigationDrawer) - 背景模糊的Navigation Drawer。 158 | 159 | ##### HUD与Toast 160 | * [android-UCToast](https://github.com/liaohuqiu/android-UCToast) - 在不申请任何权限的情况下在 Android 应用中弹出悬浮窗,[实现文档](http://gold.xitu.io/entry/5626f73960b25974a0e5e57c)。 161 | * [sweet-alert-dialog](https://github.com/pedant/sweet-alert-dialog) - sweet-alert-dialog是一款清新文艺的 Android 弹窗, 灵感来自于 JS 版的 SweetAlert。 162 | 163 | ##### 进度条 164 | * [easyloadingbtn](https://github.com/DevinShine/easyloadingbtn) - 模仿了一个Dribbble上的Material Design效果,环形loading, 进度条、进度圈。 165 | * [android-square-progressbar](https://github.com/mrwonderman/android-square-progressbar) - 一个不错的方形进度条。 166 | * [Radial Menu Widget](http://d.apkbus.com/android/Radial-Menu-Widget/52405aca6803fa2822000002) - 实现各种圆形或者半圆形菜单,以及圆形进度条。 167 | * [AnimatedCircleLoadingView](https://github.com/jlmd/AnimatedCircleLoadingView) - 一个有限/无限加载动画效果。基于Nils Banner的android-watch-loading-animation设计图。该设计本来是针对智能手表的。 168 | * [circular-progress-button](https://github.com/dmytrodanylyk/circular-progress-button) - 带动态效果的Button(按钮)可要比静态的按钮炫酷的多了,大家看到效果图就知道了。 169 | * [CircularBarPager](https://github.com/OrangeGangsters/CircularBarPager) - Android实现的动态效果,一个数字圆圈进度效果,源码CircularBarPager,material 风格的数字圆圈进度显示库(api10 +)。 170 | * [dotted-progress-bar](https://github.com/igortrncic/dotted-progress-bar) - 一个小清新的进度条。 171 | * [WhorlView](https://github.com/Kyson/WhorlView) - 一个炫酷的漩涡加载效果自定义View。 172 | * [AVLoadingIndicatorView](https://github.com/81813780/AVLoadingIndicatorView) - AVLoadingIndicatorView整合了一些漂亮的 Android 动画加载效果。 173 | * [MagicProgressWidget](https://github.com/lingochamp/MagicProgressWidget) - 渐变的圆形进度条与轻量横向进度条。 174 | * [GBSlideBar](https://github.com/edanel/GBSlideBar) - GBSlideBar类似uber/滴滴等app的滑动选择工具条。 175 | 176 | ======== 177 | ##### UI其他 178 | * [MixtureTextView](https://github.com/hongyangAndroid/MixtureTextView) - 富文本,支持Android图文混排、文字环绕图片等效果。 179 | * [android-ActionQueue](https://github.com/liaohuqiu/android-ActionQueue) - Action Queue 用于执行有次序的队列操作,比如按次序弹出对话框,这在 Android 中尤其有用。 180 | * [WheelView-Android](https://github.com/lantouzi/WheelView-Android) - WheelView-Android 是一款开源的 Android 滚动选择控件, 适用于不少应用场景。 181 | * [Android Wheel](https://code.google.com/p/android-wheel/) - 带有刻度的旋转器:日历、三级联动。 182 | * [CharacterPickerView](https://github.com/alafighting/CharacterPickerView) - 可实现三级联动的选择器,高仿iOS的滚轮控件,可实现单项选择,并支持一二三级联动效果。 183 | * [Highlight](https://github.com/hongyangAndroid/Highlight) - Highlight一款可应用于 Android 应用上的指向性功能高亮的库, 可以快速的给应用添加上应用引导的效果。 184 | * [HeaderAndFooterRecyclerView](https://github.com/cundong/HeaderAndFooterRecyclerView) - 支持addHeaderView、 addFooterView、分页加载的RecyclerView解决方案 。 185 | * [CleverRecyclerView](https://github.com/luckyandyzhang/CleverRecyclerView) - 是一个基于RecyclerView的扩展库,提供了与ViewPager类似的滑动效果并且添加了一些有用的特性。 186 | * [drag-select-recyclerview](https://github.com/afollestad/drag-select-recyclerview) - 实现了类似 Google Photos 风格的图片多选效果。 187 | * [FlycoTabLayout](https://github.com/H07000223/FlycoTabLayout) - 一个Android TabLayout库,目前有两个TabLayout:SlidingTabLayout、CommonTabLayout。 188 | * [AndroidChangeSkin](https://github.com/hongyangAndroid/AndroidChangeSkin) - 一种完全无侵入的 Android 应用换肤方式,支持插件式和应用内换肤,无需重启 Activity。 189 | * [Lobsterpicker](https://github.com/LarsWerkman/Lobsterpicker) - Lobsterpicker 为 Android 开发者提供了满足 Material Design 风格的颜色选择器。 190 | * [FlycoRoundView](https://github.com/H07000223/FlycoRoundView) - 一个扩展原生控件支持圆角矩形框背景的库,可以减少相关shape资源文件使用。 191 | * [FlowingDrawer](https://github.com/mxn21/FlowingDrawer) - FlowingDrawer 一个弹性效果的抽屉菜单,图片是概念图,实际效果实现了70%(侧滑菜单)。 192 | * [TextSurface](https://github.com/elevenetc/TextSurface) -是用 Java 写的一款借助酷炫的动画效果来完成消息展示的微型动画框架。 193 | * [android-animate-RichEditor](https://github.com/xmuSistone/android-animate-RichEditor) -android-animate-RichEditor是一款支持图片插入动画效果的 Android 富文本编辑器。 194 | * [FlycoPageIndicator](https://github.com/H07000223/FlycoPageIndicator) - android-animate-RichEditor是一款支持图片插入动画效果的 Android 富文本编辑器。 195 | * [AndroidMosaicLayout](https://github.com/adhamenaya/AndroidMosaicLayout) - 马赛克效果 Layout,磁片风格View 自适应大小。 196 | * [DropDownMenu](https://github.com/dongjunkun/DropDownMenu) - 一个实用的多条件筛选菜单,在很多App上都能看到这个效果,如美团,爱奇艺电影票等。 197 | * [Swipe-Deck](https://github.com/aaronbond/Swipe-Deck) - 仿 Tinder 的可以左右滑动消除卡片效果的自定义控件。 198 | * [IntlPhoneInput](https://github.com/Rimoto/IntlPhoneInput) - 一个支持国际化的电话号码输入的自定义控件。 199 | * [AndroidUI4Web](https://github.com/linfaxin/AndroidUI4Web) - AndroidUI4Web是一个高性能的WebApp框架, 在移动浏览器上有与原生App一致的体验。 200 | * [SmoothCheckBox](https://github.com/andyxialm/SmoothCheckBox) - SmoothCheckBox带有切换动画的CheckBox。 201 | * [AndroidTimelineViewx](https://github.com/anyunzhong/AndroidTimelineViewx) - AndroidTimelineViewx仿微信朋友圈 时间轴。 202 | * [CityPicker](https://github.com/zaaach/CityPicker) - CityPicker仿美团等选择城市列表。 203 | * [material-intro](https://github.com/HeinrichReimer/material-intro) - Material Design 风格的引导页。 204 | * [EmphasisTextView](https://github.com/athkalia/EmphasisTextView) - 支持部分文字高亮的 TextView。 205 | * [greedo-layout-for-android](https://github.com/500px/greedo-layout-for-android) - 深度定制的 LayoutManager,在显示网格布局的时候会考虑屏幕宽高比。 206 | * [Rosie](https://github.com/Karumi/Rosie) - 可以让你创建遵循 Clean Architecture 的应用的框架。 207 | * [CreditCardView](https://github.com/cooltechworks/CreditCardView) - 一个交互很赞的信用卡自定义 View。 208 | * [android-md-core](https://github.com/henrytao-me/android-md-core) - Material风格bootstrap的框架。 209 | * [SwipeCardView](https://github.com/xiepeijie/SwipeCardView) - 一个带渐变层叠动画的左右滑动效果(类似于探探左右刷脸)。 210 | * [SwipeSelector](https://github.com/roughike/SwipeSelector) - 可以左右滑动切换 item 的 Selector。 211 | * [ForegroundViews](https://github.com/Commit451/ForegroundViews) - 类似于 FrameLayout 的支持的前景自定义 View。 212 | * [android-material-chips](https://github.com/DoodleScheduling/android-material-chips) - Material Design 的 Chips 控件实现。 213 | 214 | ======== 215 | #### 动画 216 | * [Android应用开发之所有动画使用详解 ](http://blog.csdn.net/yanbober/article/details/46481171) - Android应用开发之所有动画使用详解。 217 | * [动画特效大全](http://www.eoeandroid.com/thread-562739-1-1.html) - Android 动画特效大全。 218 | * [SwitchLayout](http://blog.csdn.net/jay100500/article/details/42227365) - 国内开发者, Android的Activity切换动画特效库SwitchLayout,视图切换动画库,媲美IOS。 219 | * [ActivityOptionsICS](https://github.com/tianzhijiexian/ActivityOptionsICS) - 一个低版本activity动画兼容库——ActivityOptionsICS,可以很好的实现MD的动画效果。 220 | * [SwipeBack](https://github.com/liuguangqiang/SwipeBack) - 一个可以通过手势返回到上一个Activity的开源库,支持上下左右四个方向返回,支持多个View为Child。 221 | * [SpringIndicator](https://github.com/chenupt/SpringIndicator) - 模仿Morning Routine的引导页效果SpringIndicator;基于模仿红点拖拽的Demo实现:[BezierDemo](https://github.com/chenupt/BezierDemo);sample中使用到 快速创建ViewPager和ListView等的第三方库:[MultipleModel](https://github.com/chenupt/MultipleModel)。 222 | * [XhsWelcomeAnim](https://github.com/w446108264/XhsWelcomeAnim) - 国内开发者, 华丽酷炫欢迎引导界面 动画没有之一。 223 | * [Material-Animations](https://github.com/lgvalle/Material-Animations) - Material风格动画,可以定义两个Activity之间的动画。 224 | * [android-shapeLoadingView](https://github.com/zzz40500/android-shapeLoadingView) - android-shapeLoadingView实现高仿新版58 加载动画,loading。 225 | * [一个绚丽的loading](http://blog.csdn.net/tianjian4592/article/details/44538605) - 一个绚丽的loading动效分析与实现。 226 | * [TransitionPlayer](https://github.com/XMFE-TEAM/TransitionPlayer) - 一个 Transition 动画控制控制库,可以让你很轻松的创建一个可交互的动画。 227 | * [loading-balls](https://github.com/glomadrian/loading-balls) - loading-balls 一款支持高度配置的 Android 加载进度球。 228 | * [SogoLoading](https://github.com/dengshiwei/SogoLoading) - 仿搜狗浏览器加载动画,[实现说明](http://blog.csdn.net/mr_dsw/article/details/49026531)。 229 | * [ExplosionField](https://github.com/tyrantgit/ExplosionField) - Android中View 炸裂特效的[实现分析](http://blog.csdn.net/feelang/article/details/48817145)。 230 | * [AZExplosion](https://github.com/Xieyupeng520/AZExplosion) - AZExplosion:模仿ExplosionField的粒子破碎效果。 231 | * [BrokenView](https://github.com/zhanyongsheng/BrokenView) -玻璃碎裂动画效果。 232 | * [SwipeCardView](https://github.com/xiepeijie/SwipeCardView) - SwipeCardView一个带渐变层叠动画的左右滑动效果(类似于探探左右刷脸)。[类似SwipeCard](https://github.com/Diolor/Swipecards) 233 | * [CRAudioVisualizationView](https://github.com/Cleveroad/CRAudioVisualizationView) - 水波纹效果的声音可视化自定义 View。 234 | 235 | ======== 236 | #### 网络相关 237 | ##### 网络连接 238 | * [ion](https://github.com/koush/ion) - 一个异步网络请求和图片加载的库,一个库能搞定几乎所有的网络请求。 239 | * [多线程下载](http://www.eoeandroid.com/thread-564501-1-1.html) - Android 实现多线程下载 完美代码。 240 | * [opandroid](https://github.com/openpeer/opandroid) - android p2p的开源实现。 241 | * [okio](https://github.com/square/okio) - square出的Okio这个库,尤其擅长处理二进制数据。如果觉得Java的输入输出流实在太复杂啰嗦,不妨试试Okio。 242 | * [okhttp](https://github.com/square/okhttp) - square出的okhttp库。 243 | * [OkHttpPlus](https://github.com/ZhaoKaiQiang/OkHttpPlus) - OkHttp 的一个工具类开源项目OkHttpPlus——支持GET、POST、UI线程回调、JSON格式解析、链式调用、文件上传下载 ,[OkHttpPlus介绍](http://blog.csdn.net/zhaokaiqiang1992/article/details/50016815)。 244 | * [Android-Download-Manager-Pro](https://github.com/majidgolshadi/Android-Download-Manager-Pro) - 一个下载管理库,如果你的 App 有大量的下载工作,这个库能帮到你。 245 | * [FileDownloader](https://github.com/lingochamp/FileDownloader) - 文件下载引擎,稳定、高效、简单易用。 246 | 247 | ======== 248 | ##### 网络测试 249 | * [augmented-traffic-control](https://github.com/facebook/augmented-traffic-control) - Facebook宣布开源移动网络测试工具ATC,该工具支持利用Wi-Fi网络模拟2G、2.5G、3G以及LTE 4G移动网络环境,让测试工程师们能够快速对智能手机和App在不同国家地区和应用环境下的性能表现进行测试。 250 | 251 | ======== 252 | ##### 图像获取 253 | * [glide](https://github.com/bumptech/glide) - glide google出品,[使用教程](http://www.jianshu.com/p/4a3177b57949)、[GlidePalette](https://github.com/florent37/GlidePalette)。[5 个顶级 Android 开源库](https://github.com/xitu/gold-miner/blob/master/TODO/Top-5-Android-libraries-every-Android-developer-should-know-about.md) 254 | * [Universal Image Loader](https://github.com/nostra13/Android-Universal-Image-Loader) - Universal Image Loader 是一个强大的、可高度定制的图片缓存,简称:UIL,可以高度配置的网络图片缓存库,非常灵活,用户量最多 。 255 | * [picasso](https://github.com/square/picasso) - picasso 功能单一,没有缓存过期,同androidQuery一样链式调用,载入本地文件速度慢(没有生成thumbnails) ,[Picasso and Android-Universal-Image-Loader](http://donal-tong.github.io/blog/2014/05/21/picasso-and-auil/),另外的一些诸如裁剪图片:Picasso.with(context) .load(url) .resize(50, 50) .centerCrop() .into(imageView)。 256 | * [fresco](https://github.com/facebook/fresco) - Facebook 又放出的一个新项目,一个类似 Picasso, Glide 的库,不过比他们做的更好。 强烈推荐![Fresco集成示例](https://github.com/liaohuqiu/fresco-demo-for-gradle)。 257 | * [tape](http://square.github.io/tape/) - 类似于图片加载库(例如UIL、Picasso等)实现异步加载,但是加载的不一定是图片。! 258 | * [ImageLoader](https://github.com/novoda/ImageLoader) - ImageLoader 。 259 | * [Volley](https://github.com/mcxiaoke/android-volley) - Volley 综合框架,包含图片部分,[Volley与Picasso的对比](http://blog.happyhls.me/2014/11/27/volley%E4%B8%8Epicasso%E7%9A%84%E5%AF%B9%E6%AF%94/)。 260 | * [enif](code.google.com/p/enif/) - enif 。 261 | * [wqgallery](https://github.com/wqandroid/wqgallery) - wqgallery实现类似微信选择照片功能,可以通过相机或相册选择,支持单张裁剪,支持单选模式、支持多选模式。 262 | 263 | #### 响应式编程 264 | * [RxAndroid](https://github.com/ReactiveX/RxAndroid/) - RxAndroid:函数响应式编程 ,[RxJava](https://github.com/mcxiaoke/RxDocs) - Rx和RxJava文档中文翻译项目, [RxJava 详解](http://gank.io/post/560e15be2dca930e00da1083)。 265 | 266 | 267 | 268 | ======== 269 | #### 地图 270 | * [百度地图](http://www.eoeandroid.com/thread-568507-1-1.html) - Android百度地图 线路规划,模拟运动轨迹,及全景效果。 271 | * [AirMapView](https://github.com/airbnb/AirMapView) - 支持多个本地地图提供者包括谷歌地图V2和亚马逊地图V2。如果设备没有任何受支持的本地地图提供者,AirMapView会回退到基于web的地图提供者(目前谷歌地图)。 272 | 273 | ======== 274 | #### 数据库 275 | * [ORMLite](http://ormlite.com/sqlite_java_android_orm.shtml) - ORMLite做的最棒但是学习成本有点儿高,ORMLite的文档有点儿烂。 276 | * [SugarORM](http://satyan.github.io/sugar/index.html) - SugarORM比较轻便, 支持Has a 和 Has many映射,但无法保存集合,没有映射关系。 277 | * [GreenDAO](http://greendao-orm.com/) - GreenDAO要先建立一个java项目来生成对应的表,一变动又要生成,很不方便。 278 | * [ActiveDriod](https://github.com/pardom/ActiveAndroid) - ActiveDriod也不错 [官网](http://www.activeandroid.com/)。 279 | * [ORMDroid](https://github.com/roscopeco/ormdroid) - ormdroid 。 280 | * [sqlbrite](https://github.com/square/sqlbrite) - 良心企业Square的又一开源项目,当你不想给用ContentProvider,只想简单监听SQLite表增删改的数据变更时可以试试它。 281 | * [sqlbrite](https://github.com/LuckyJayce/DBExecutor) - DBExecutor android ORM数据库 1.使用了读写锁,支持多线程操作数据。 2.支持操作多个数据库 3.支持事务 4.缓存Sql,缓存表结构。 282 | * [Iron](https://github.com/FabianTerhorst/Iron) - 一个快速和易用的 NoSQL 数据存储框架。 283 | * [hawk](https://github.com/orhanobut/hawk) - 一个快速和易用的键值对数据存储框架,支持AES加密,支持SharedPreferences或Sqlite存储,支持Gson解析。 284 | * [AndroidKeyValueStore](https://github.com/lusfold/AndroidKeyValueStore) - 一个基于 SQLite 的 Key/Value 存储框架。 285 | * [DBFlow](https://github.com/Raizlabs/DBFlow) - 一个速度极快,功能强大,而且非常简单的 Android 数据库 ORM 库,为你编写数据库代码,DBFlow 已被证明是最好的解决方案。[5 个顶级 Android 开源库](https://github.com/xitu/gold-miner/blob/master/TODO/Top-5-Android-libraries-every-Android-developer-should-know-about.md) 286 | 287 | ======== 288 | #### 图像浏览及处理 289 | * [MPAndroidChart](https://github.com/ggchxx/MPAndroidChart) - MPAndroidChart是一个功能强大的图表开源类库:曲线图、柱形图、环形图。 290 | * [XCL-Charts](https://github.com/xcltapestry/XCL-Charts) - (国人开发)基于Android Canvas来绘制各种图表,使用简便,定制灵活。 291 | * [WilliamChart](https://github.com/diogobernardino/WilliamChart) - 绘制图表的库,支持LineChartView、BarChartView和StackBarChartView三中图表类型,并且支持 Android 2.2及以上的系统。 292 | * [CropImageView](https://github.com/cesards/CropImageView) - 原生ImageView只支持centerCrop,这里有支持9个方向裁剪的ImageView。 293 | * [SimpleCropView](https://github.com/IsseiAoki/SimpleCropView) - 一个Android的图片裁剪库,使用简单,易于定制。 294 | * [DrawableView](https://github.com/PaNaVTEC/DrawableView) - DrawableView实现画板功能,可以改变画笔粗细,颜色,支持撤销功能。 295 | * [ImageCoverFlow](https://github.com/dolphinwang/ImageCoverFlow) - ImageCoverFlow效果不错的画廊控件 可以设置画廊一次可见图片的张数,和其他第三方Gallery控件不同的是,该控件直接继承自View,而不是sdk中的Gallery控件。 296 | * [FancyCoverFlow](https://github.com/davidschreiber/FancyCoverFlow) - 支持Item切换动画效果的类似Gallery View。[改进版本](https://github.com/LittleLiByte/GlFancyCoverFlow)可以无限轮播,可以选择自动轮播或者 手动滑动。 297 | * [BGABanner-Android](https://github.com/bingoogolapple/BGABanner-Android) - demo中演示了引导页、以及通过fresco、android-async-http、gson实现广告条的自动轮播效果(splash 、 ViewPager切换动画) 。 298 | * [RecyclerViewPager](https://github.com/lsjwzh/RecyclerViewPager) - 重写后的 RecyclerViewPager 完全继承自RecyclerView,可以自定义触发翻页的距离,可自定义翻页速度,支持VerticalViewPager,支持Fragment。 299 | * [StickerCamera](https://github.com/Skykai521/StickerCamera) - 可以说是一个完整的相机、图片编辑的 APP,集成了大部分市面上有的同类 APP 的功能,裁剪、滤镜、贴纸应有尽有。 300 | * [demo6_PhotoRiver](https://github.com/debolee/demo6_PhotoRiver) - 图片流动显示的demo,可以点击流动中的图片放大显示,双击空白处图片以九宫格排列。 301 | * [glide-transformations](https://github.com/wasabeef/glide-transformations) - 一个基于Glide的transformation库,拥有裁剪,着色,模糊,滤镜等多种转换效果。 302 | * [ColoringLoading](https://github.com/recruit-lifestyle/ColoringLoading) - 一个用纯代码实现自动绘画效果动画的项目。 303 | * [SmartDrawing](https://github.com/SmartDengg/SmartDrawing) - 一个轻量级的手绘板,加入了一点截图功能。这只是一个Demo。并不能作为类库,也不是完整的项目工程,仅供学习或参考使用。 304 | * [SlidingCard](https://github.com/mxn21/SlidingCard) - 漂亮的卡片滑动翻页特效。 305 | * [LargeImage](https://github.com/LuckyJayce/LargeImage) - 加载大图 可以高清显示10000*10000像素的图片。 306 | * [GalleryFinal](https://github.com/pengjianbo/GalleryFinal) - 自定义相册,实现了拍照、图片选择(单选/多选)、 裁剪(单/多裁剪)、旋转、ImageLoader无绑定任由开发者选 择、功能可配置、主题样式可配置。GalleryFinal为你定制相册。 307 | * [AndroidAlbum](https://github.com/D-clock/AndroidAlbum) - AndroidAlbum图片选择器:1、MVP结构设计;2、工厂模式对载图框架进行封装抽象,方便替换其他载图框架;3、闪退日志的搜集,方便揪BUG。 308 | * [uCrop](https://github.com/Yalantis/uCrop) - uCrop 是 Yalantis 推出的又一款力作, 用于裁剪 Android 系统上的图片, 致力于打造最佳的图片裁剪体验。 309 | * [crop-image-layout](https://github.com/yulu/crop-image-layout) - crop-image-layout:图片裁切布局。 310 | 311 | ======== 312 | #### 视频音频处理 313 | * [ijkplayer](https://github.com/Bilibili/ijkplayer) - B站开源的视频播放器,支持Android和iOS。 314 | * [DanmakuFlameMaster](https://github.com/Bilibili/DanmakuFlameMaster) - 这里是Android上最好的开源弹幕引擎·烈焰弹幕使。 315 | * [YouTubePlayerActivity](https://github.com/TheFinestArtist/YouTubePlayerActivity) - 一个可以播放YouTube视频的Activity,支持屏幕旋转、声音控制、播放失败处理、可以自定义Activity关闭动画以及在横屏播放的时候自动隐藏status bar。 316 | * [AndroidVideoPlayer](https://github.com/xiongwei-git/AndroidVideoPlayer) - 开源的 Android 视频播放器,支持 DLNA。 317 | * [Hide-Music-Player](https://github.com/w9xhc/Hide-Music-Player) - Hide音乐播放器。 318 | * [JamsMusicPlayer](https://github.com/psaravan/JamsMusicPlayer) - 是一个功能强大的 Android 开源播放器, 作者将原本收费的项目拿出来开源, 实在令人敬佩。 319 | * [RxAndroidAudior](https://github.com/Piasy/RxAndroidAudior) - RxAndroidAudior目前最鲁棒的Android声音录制和播放封装库了,[说明](http://blog.piasy.com/Robust-Android-Audio-encapsulation/)。 320 | * [Timber](https://github.com/naman14/Timber) - 一款遵循了Material Design并且设计精美的播放器 Timber Music Player,已经在google play上架。 321 | 322 | ======== 323 | #### 测试及调试 324 | * [DevelopQuickSetting](https://github.com/kyze8439690/DevelopQuickSetting) - 快速开启关闭开发者设置的工具,提供了app界面和桌面widget,能快速打开关闭overdraw,layout border,gpu rendering,adb wifi,不保存activity实例等功能。 325 | * [decompileandroid](http://www.decompileandroid.com/) - 在线反编译apk文件。 326 | * [jadx](https://github.com/skylot/jadx) - 一个Android反编译神器,不同于常见的dex2jar,这个反编译器生成代码的try/catch次数更少,View也不再是数字id了,可读性更高。 327 | * [Androguard](https://github.com/androguard/androguard) - Androguard使用Python写的一系列逆向工具集,功能很强大哦,对逆向工程感兴趣的小伙伴可以这个系列,[教程](http://www.technotalkative.com/part-1-reverse-engineering-using-androguard/)。 328 | * [logger](https://github.com/orhanobut/logger) - 一个简单、漂亮、功能强大的Android日志程序。 329 | * [stf](https://github.com/openstf/stf) - WEB 端批量移动设备管理控制工具 STF 的环境搭建和运行,[使用说明](https://testerhome.com/topics/2988) 。 330 | * [DecompileApk](https://github.com/MasonLiuChn/DecompileApk) - 一键反编译 APK,输出所有反编译后的代码、资源,使用方便。 331 | * [AppCrashTracker](https://github.com/macroday/AppCrashTracker) - 一个异常追踪器,可以生成一个 JSON 格式的日志并可以上传到服务器。 332 | 333 | ======== 334 | #### 动态更新热更新 335 | * [dexposed](https://github.com/alibaba/dexposed) - 淘宝 支付宝的Android底层技术团队即将为Dexposed开源项目贡献一个重要的扩展能力 —— 方法粒度的完整替换,大幅度降低基于AOP方式替换大型方法的开发成本,[使用教程](http://www.apkbus.com/android-244457-1-1.html),[Android平台免Root无侵入AOP框架Dexposed使用详解](http://www.jianshu.com/p/14edcb444c51) 。 [Android Hotpatch系列之-项目介绍](http://my.oschina.net/fengcunhan/blog/487296) - [客户端例子实现](https://github.com/fengcunhan/Hotpatch-Sample),[服务器简易实现](https://github.com/fengcunhan/Hotpatch-SimpleServer) 。热更新。 336 | * [Xposed](https://github.com/rovo89/Xposed) - Xposed是一款可以在不修改APK的情况下影响程序运行的框架服务,[Android Hook神器:XPosed入门与登陆劫持演示](http://www.csdn.net/article/2015-08-14/2825462) 。热更新。 337 | * [code-push](http://microsoft.github.io/code-push/) -大微软推出的一套可以为用 React Native 和 Cordova 开发的 App 提供代码热更新的方案。 338 | * [DynamicAPK](https://github.com/CtripMobile/DynamicAPK) - 实现Android App多apk插件化和动态加载,支持资源分包和热修复。 339 | 340 | ======== 341 | #### 消息推送 342 | ##### 客户端 343 | 344 | ##### 服务器端 345 | 346 | ======== 347 | #### 完整项目 348 | * [SuesNews新闻客户端](https://github.com/sues-lee/SuesNews) - 腾飞新闻,一个符合 Google Material Design 的 Android 校园新闻客户端 ,[新闻客户端说明](http://www.eoeandroid.com/thread-569074-1-1.html) 。 349 | * [新闻客户端](http://bbs.aiyingli.com/forum.php?mod=viewthread&tid=12170) - Android应用源码比较不错的新闻客户端,本项目启动引导登录注册用户中心列表显示文章分页下拉刷新文章收藏更新反馈等新闻客户端常见的功能都有,项目分层合理,代码质量较高。 350 | * [materialistic](https://github.com/hidroh/materialistic) - Material Desgin风格的Hacker News客户端。 351 | * [Telegram](https://github.com/DrKLO/Telegram) - Telegram 是一款专注于速度、安全的短信息应用,快速、简单、免费。Telegram 支持群组聊天,最高200人,最高支持分享1GB的视频,其它图片等等更是不在话下。而且所有信息全部支持同步。由于频发的隐私问题,所以 Telegram 也很注重通信安全。 352 | * [SuZhouTong-client-for-android](https://github.com/liuch930/SuZhouTong-client-for-android) - 苏州通android客户端,非常多的UI效果。 353 | * [ele_demo](https://github.com/guxun12/ele_demo) - 仿【饿了么】订餐软件的一个demo。 354 | * [MD-BiliBili](https://github.com/Qixingchen/MD-BiliBili) - Material Design 版 BiliBili Android 客户端。 355 | * [AisenWeiBo](https://github.com/wangdan/AisenWeiBo) - Aisen微博是新浪微博的第三方客户端,UI遵循Material Design:遵循Material Design、发布多图、离线下载、私信(触屏版、颜色主题切换、手势返回,4.4、5.0状态栏变色、离线编辑,定时发布多图、gif、长微博预览。[FrescoDemo](https://github.com/06peng/FrescoDemo) 。 356 | * [快递查询](http://bbs.aiyingli.com/forum.php?mod=viewthread&tid=12274) - 使用了爱查快递[www.ickd.cn](http://www.ickd.cn/)的api接口,可以查询申通、EMS、顺风、圆通、中通、韵达、天天、汇通、全锋、德邦、宅急送等11种快递的单号信息,支持手动输入单号和扫描单号(红米测试的时候扫描单号有点问题),可以保存单号查询记录方便下次查询,,另外还包括了网络状态判断、快递自动更新、软件更新等功能,项目完美运行,有很详细的中文注释和逻辑分层。 357 | * [SmartCall](http://git.oschina.net/yso/SmartCall) - SmartCall Android 企业通讯录。 358 | * [Android-高仿大众点评客户端源码](http://download.jikexueyuan.com/detail/id/539.html#0-tsina-1-72241-397232819ff9a47a7b7e80a40613cfe1) - Android-高仿大众点评客户端源码。 359 | * [八个Android项目源码](http://bbs.aiyingli.com/forum.php?mod=viewthread&tid=12974) - 八个Android项目源码,大部分功能相信可以在实战项目中直接使用,供大家下载学习,大部分项目是基于Android Studio开发,IDE为Eclipse的童鞋可通过网上教程自行转换,这里就不多说了。大家可以下载下来学习看看! [百度云盘下载地址](http://pan.baidu.com/s/1mgMlCBA)。 360 | * [minicat](https://github.com/mcxiaoke/minicat) - 一个简洁的饭否App,支持Android 4.0以上版本。 361 | * [SimplifyReader](https://github.com/SkillCollege/SimplifyReader) - 一款基于Google Material Design设计开发的Android客户端,包括新闻简读,图片浏览,视频爽看 ,音乐轻听以及二维码扫描五个子模块。 362 | * [GithubTrends](https://github.com/laowch/GithubTrends) - 是一个用来看查看 GitHub 热门项目的 Android App, 遵循 Material Design, 支持订阅 50 多种编程语言, 9 种颜色主题切换, 可在上面收藏喜欢的项目。 363 | * [jianshi](https://github.com/wingjay/jianshi) - jianshi简诗是国人开发的一个用于记录文字信息的 Android 完整应用, 作者仅用了一天便将其开发出来, 并将开发的流程记录成文放到了简书上。 364 | * [BuildingBlocks](https://github.com/tangqi92/BuildingBlocks) - 积木: 一个以知乎日报作为数据展现内容;以抽屉菜单作为功能扩展入口;依循 Material Design 作为主导设计 UI 的应用。 365 | * [Douya](https://github.com/DreaminginCodeZH/Douya) - 开源的 Material Design 豆瓣客户端。 366 | * [TranslateApp](https://github.com/maoruibin/TranslateApp) - 一个实现『划词翻译』功能的 Android 开源应用。 367 | 368 | ======== 369 | ### 插件 370 | * [Android Studio 插件和工具](http://stormzhang.com/android/2015/05/26/android-tools/) - 5个 推荐几个有用的 Android Studio 插件和工具(ButterKnife、selectorChapek、GsonFormat、ParcelableGenerator、LeakCanary)。 371 | * [ 8 个最优秀的 Android Studio 插件](http://www.imooc.com/article/1148) - 8 个最优秀的 Android Studio 插件(H.A.X.M(硬件加速执行管理器)、Genymotion、Android Drawable Importer、Android ButterKnife Zelezny、Android Holo Colors Generator、Robotium Recorder、jimu Mirror、Strings-xml-tools)。 372 | * [smalidea](https://github.com/JesusFreke/smali/wiki/smalidea) - 一款 IntelliJ IDEA/Android Studio 的 smali 插件~ ,[Smalidea 无源码调试 Android 应用](http://drops.wooyun.org/tips/7181)。 373 | * [gradle-fir-plugin](https://github.com/sangmingming/gradle-fir-plugin) - 一个上传apk到fir的gradle插件,[使用说明](http://blog.isming.me/2015/08/01/gradle-fir-plugin/)。 374 | * [android-butterknife-zelezny](https://github.com/avast/android-butterknife-zelezny) - 一个ButterKnife的Android Studio插件, 该插件可以让你手动生成上述注入代码。 375 | * [GradleDependenciesHelperPlugin](https://github.com/ligi/GradleDependenciesHelperPlugin) - Gradle 依赖自动补全插件。 376 | * [android-selector-intellij-plugin](https://github.com/importre/android-selector-intellij-plugin) - 可以根据指定颜色生成Selector Drawable的插件。 377 | * [7个最佳的Android模拟器](http://www.imooc.com/article/1425) - 7个最佳的Android模拟器。 378 | * [gradle-android-javadoc-plugin](https://github.com/vanniktech/gradle-android-javadoc-plugin) - 可以生成 java doc 的 Gradle 插件。 379 | * [gradle-android-junit-jacoco-plugin](https://github.com/vanniktech/gradle-android-junit-jacoco-plugin) - 可以生成代码单元测试覆盖率报告的 Gradle 插件。 380 | * [gradle-android-apk-size-plugin](https://github.com/vanniktech/gradle-android-apk-size-plugin) - 可以将 Apk 大小记录到 CSV 文件的 Gradle 插件。 381 | * [几款实用的Android Studio 插件](http://www.jianshu.com/p/6f5f818afe4b) - 几款实用的Android Studio 插件:1、android-butterknife-zelezny;2、Gsonformat:可根据json数据快速生成java实体类;3、Android Postfix Completion;4、AndroidAccessors;5、Lifecycle Sorter:根据Activity或者fragment的生命周期对其生命周期方法位置进行先后排序,快捷键Ctrl + alt + K;6、JsonOnlineViewer;7、CodeGlance;8、findBugs-IDEA:帮你一起找bug的;9、ADB WIFI:使用wifi无线调试你的app,无需root权限。 382 | 383 | ======== 384 | ### 出名框架 385 | * [xUtils](https://github.com/wyouflf/xUtils) - xUtils 包含了很多实用的android工具。支持大文件上传,更全面的http请求协议支持(10种谓词),拥有更加灵活的ORM,更多的事件注解支持且不受混淆影响。最低兼容android 2.2 (api level 8)。目前xUtils主要有四大模块:DbUtils模块、ViewUtils模块、HttpUtils模块、BitmapUtils模块。 386 | * [afinal](http://git.oschina.net/fuhai/afinal) - Afinal是一个android的ioc,orm框架,内置了四大模块功能:FinalAcitivity,FinalBitmap,FinalDb,FinalHttp。 387 | * [ButterKnife](https://github.com/JakeWharton/butterknife) - ButterKnife是一个专注于Android系统的View注入框架,让你从此从这些烦人臃肿的代码中解脱出来,[ButterKnife--View注入框架](http://stormzhang.com/openandroid/android/2014/01/12/android-butterknife/)。[5 个顶级 Android 开源库](https://github.com/xitu/gold-miner/blob/master/TODO/Top-5-Android-libraries-every-Android-developer-should-know-about.md) 388 | * [EventBus](https://github.com/greenrobot/EventBus) - EventBus是一款针对Android优化的发布/订阅事件总线。主要功能是替代Intent,Handler,BroadCast在Fragment,Activity,Service,线程之间传递消息.优点是开销小,代码更优雅。以及将发送者和接收者解耦。[xBus](https://github.com/mcxiaoke/xBus) - xBus - 简洁的EventBus实现。 389 | * [Small](https://github.com/wequick/Small) - 做最轻巧的跨平台插件化框架,目前已支持Android、iOS以及html5插件。并且三者之间可以通过同一套javascript接口进行通信。 390 | * [LayoutCast](https://github.com/mmin18/LayoutCast) - LayoutCast可以在应用不重启的情况下,将res文件夹下的改动直接同步到手机上。使用LayoutCast,可以节约Android开发者的大量编译等待时间,非常适合真机调试界面的时候使用,推荐每一位开发者安装该利器。BUCK很快,但入侵性强,项目改动大,LayoutCast对项目改动小。 391 | * [retrofit](https://github.com/square/retrofit/tree/version-one) - retrofit将 REST API 转换为 Java 接口。[5 个顶级 Android 开源库](https://github.com/xitu/gold-miner/blob/master/TODO/Top-5-Android-libraries-every-Android-developer-should-know-about.md) 392 | * [Dagger2](https://github.com/google/dagger) - Dagger 2 是著名的依赖注入库 [Dagger](https://github.com/square/dagger) 的继承者,我们强烈推荐它。[文档](http://google.github.io/dagger/),[5 个顶级 Android 开源库](https://github.com/xitu/gold-miner/blob/master/TODO/Top-5-Android-libraries-every-Android-developer-should-know-about.md) 393 | 394 | ======== 395 | #### 其他 396 | * [java-zhconverter](http://code.google.com/p/java-zhconverter/) - java-zhconverter是一个简繁体中文互换的Java开源类库。 397 | * [joda-time-android](https://github.com/dlew/joda-time-android) - 一个超赞的时间处理的库,Joda-Time ! 他能帮你轻松处理时区,处理时间加减,计算到期时间等等场景下的问题。[java版本](http://www.joda.org/joda-time/key_partial.html) 398 | * [AssistiveTouch](https://github.com/luozi/AssistiveTouch) - 配合Android手机沉浸式隐藏虚拟按键后快捷操作 (Nexus5屏幕变大了)。 399 | * [S-Tools](https://github.com/naman14/S-Tools) - S-Tools一个可以实时查看的CPU状态和手机各类传感器数据,还有一些例如颜色选择、指南针和设备信息等功能。 400 | * [JsBridge](https://github.com/lzyzsd/JsBridge) - 模仿微信webview的JsBridge,安全方便的实现js和Java的互相调用,主要通过loadUrl和shouldOverrideUrl实现。 401 | * [Sample Of All Samples](https://github.com/MostafaGazar/soas) - 提供大部分Android5.0组件的示例应用。 402 | * [Android-Package-Channel](https://github.com/s1rius/Android-Package-Channel) - 美团网做的把Android多渠道打包工具,打包时间缩短到一分钟,python脚本。 403 | * [fast-apk-packaging](http://www.race604.com/fast-apk-packaging/) - Android不需要重新编译打渠道包。 404 | * [android_gradle_script](https://github.com/lihei12345/android_gradle_script) - gradle批量打包脚本,用txt配置一下,就可以支持多个渠道打包,适合国内这种动不动上百个渠道包的环境。目前有个问题,一次打包脚本超过80个就会GC问题。 405 | * [BatchPackApk](https://github.com/MasonLiuChn/BatchPackApk) - 免签名直接打包工具。 406 | * [Android多渠道打包工具Gradle插件](https://github.com/mcxiaoke/gradle-packer-plugin/blob/master/readme.md) - Android多渠道打包工具Gradle插件。 407 | * [Gradle-Plugin-User-Guide-Chinese-Verision](http://avatarqing.github.io/Gradle-Plugin-User-Guide-Chinese-Verision/) - Gradle插件使用指南中文版。 408 | * [gradle-guide.books](http://gradle-guide.books.yourtion.com/) - Android Gradle 插件中文指南(GitBook)。 409 | * [Android-package_tool](https://github.com/ahui2823/package_tool) - 该工程用于编译多渠道Android应用,替换相应的标签,然后重新打包,用perl脚本实现。 410 | * [兰贝壳儿](http://www.orchidshell.com/) - Android多渠道打包解决方案(兰贝壳儿),eclipse插件。 411 | * [Algorithms](https://github.com/pedrovgs/Algorithms) - 常见算法问题的Java实现。 412 | * [java-design-patterns](https://github.com/iluwatar/java-design-patterns) - 一个常见设计模式的java实现。 413 | * [PreferenceInjector](https://github.com/denley/PreferenceInjector) - SharedPreference注入开源库,SharedPreference key与某个变量绑定、监听key变化、初始化key都可以通过注解完成。 414 | * [prettytime](http://www.ocpsoft.org/prettytime/) - 一个实用的人性化的时间显示,比如:几分钟前,几天前。 415 | * [Material-Movies](https://github.com/saulmm/Material-Movies) - Material Design 下的Movie App(电影展示),可供学习,或者直接二次开发。 416 | * [Clean-Contacts](https://github.com/PaNaVTEC/Clean-Contacts) - 充满技术含量的一个 Contact App(联系人)。 417 | * [RedEnvelopeAssistant](https://github.com/waylife/RedEnvelopeAssistant) - 完全免费开源的抢红包软件、做这个软件纯粹是发现Android的模拟点击十分好玩,然后顺道写了一个,有此基础,可以再扩展其他的很多模拟点击程序 。 418 | * [superCleanMaster](https://github.com/joyoyao/superCleanMaster) - 一键清理开源版,包括内存加速,缓存清理,自启管理,软件管理等。 419 | * [LoadViewHelper](https://github.com/LuckyJayce/LoadViewHelper) - 切换加载中,加载失败,加载成功布局,定义一个LoadViewHelper所有界面通用。 420 | * [android-best-practices](https://github.com/futurice/android-best-practices) - android最佳实践 421 | * [Android最佳实践](http://android.jobbole.com/80684/) - 安卓最佳实践(1):安卓开发--中文。 422 | * [Android最佳实践](https://github.com/futurice/android-best-practices/blob/master/translations/Chinese/README.cn.md) - 从Futurice公司Android开发者中学到的经验。 遵循以下准则,避免重复发明轮子。若您对开发iOS或Windows Phone 有兴趣, 请看iOS Good Practices 和 Windows client Good Practices 这两篇文章。 423 | * [如何安装ACRA](http://blog.csdn.net/chen52671/article/details/44751347) - 如何安装ACRA-一个Android应用Crash跟踪系统—在自己的服务器上。 424 | * [Android ocr识别文字介绍](http://blog.csdn.net/love_xsq/article/details/44616925) - Android ocr识别文字介绍 。 425 | * [DaVinci](https://github.com/florent37/DaVinci) - DaVinci是一个适用于Android Wear平台的图片下载和缓存library。 426 | * [Point-of-Android](https://github.com/FX-Max/Point-of-Android) - Android 一些重要知识点解析整理 。 427 | * [AppStoreLibrary](https://github.com/mcsong/AppStoreLibrary) - 检测是否在appstore安装了应用,搜索应用。 428 | * [LeakCanary](https://github.com/liaohuqiu/leakcanary-demo) - 利用此类库,排查内存泄露变得非常简单,[LeakCanary 中文使用说明](http://www.liaohuqiu.net/cn/posts/leak-canary-read-me/),[LeakCanary: 让内存泄露无所遁形](http://www.liaohuqiu.net/cn/posts/leak-canary/) 。 429 | * [anko](https://github.com/JetBrains/anko) - 快速开发框架。 430 | * [CommonAdapter](https://github.com/tianzhijiexian/CommonAdapter) - 通过对于原生Adapter的封装,产生了支持ListView,GridView,RecyclerView的简单通用的Adapter。这种方式将item变成独立的“视图”对象,方便操作,又增加了可扩展性。 431 | * [MVPAndroidBootstrap](https://github.com/richardradics/MVPAndroidBootstrap) - 一个Android MVP 模式实例项目。 432 | * [json2notification](https://github.com/8tory/json2notification) - 一个多功能方便好用的notification通知栏通知开源库。 433 | * [barcodescanner](https://github.com/dm77/barcodescanner) - 一个封装好的基于zxing二维码扫描库。 434 | * [mqtt](https://github.com/mcxiaoke/mqtt) - MQTT 协议 3.1.1 中文翻译版。 435 | * [Droid Plugin](https://github.com/Qihoo360/DroidPlugin) - DroidPlugin 是360手机助手在Android系统上实现了一种新的插件机制:它可以在无需安装、修改的情况下运行APK文件,此机制对改进大型APP的架构,实现多团队协作开发具有一定的好处。 436 | * [JsonAnnotation](https://github.com/tianzhijiexian/JsonAnnotation) - 利用注解自动生成Gson‘s Model的库。 437 | * [WeChatLuckyMoney](https://github.com/geeeeeeeeek/WeChatLuckyMoney) - 微信抢红包插件。 438 | * [android-support-23.2-sample](https://github.com/liaohuqiu/android-support-23.2-sample) - support 库在 23.2 版本新增内容示例项目。 439 | 440 | ======== 441 | #### 好的文章 442 | * [高效抽取loading](http://www.apkbus.com/android-244454-1-1.html) - 高效抽取loading,再多的加载页面也不怕。 443 | * [修复bug的12个关键步骤](http://www.imooc.com/wenda/detail/209282) - 修复bug的12个关键步骤。 444 | * [Android开发技术前线](https://github.com/bboyfeiyu/android-tech-frontier) - 里面是安卓的一些外国前沿文章的翻译,想课余时间学习 Android 的看看,已经收录了。 445 | * [android-tuning-tool-strictmode](http://droidyue.com/blog/2015/09/26/android-tuning-tool-strictmode/) - Android性能调优利器StrictMode。 446 | * [Android-Tips](https://github.com/tangqi92/Android-Tips) - Android-Tips 安卓方面各种难点坑汇总,按字母排序。 447 | * [jvm-core-learning-example](https://github.com/JeffLi1993/jvm-core-learning-example) - 关于Java虚拟机核心知识点学习积累的例子,是初学者及虚拟机核心知识巩固的最佳实践。。 448 | * [Translucent System Bar 的最佳实践](http://www.jianshu.com/p/0acc12c29c1b) - Translucent System Bar 的最佳实践。 449 | * [最详细的 Toolbar 开发实践总结](http://www.jianshu.com/p/79604c3ddcae) - 最详细的 Toolbar 开发实践总结。 450 | * [最详细的 NavigationDrawer 开发实践总结](http://www.jianshu.com/p/c8cbeb7ea43a) - 最详细的 NavigationDrawer 开发实践总结。 451 | * [MVVM 模式介绍](https://github.com/xitu/gold-miner/blob/master/TODO%2Fapproaching-android-with-mvvm.md) - MVVM 模式介绍。 452 | * [RecyclerView技术栈](http://www.jianshu.com/p/16712681731e) - RecyclerView技术栈。 453 | * [awesome-github](https://github.com/AntBranch/awesome-github) - awesome-github:收集这个列表,只是为了更好地使用亲爱的GitHub。 454 | 455 | ======== 456 | ### 收集android上开源的酷炫的交互动画和视觉效果 457 | * [酷炫的交互动画和视觉效果](https://github.com/Rano1/Interactive-animation/blob/master/README.md) - 描述:收集android上开源的酷炫的交互动画和视觉效果。1.交互篇,2.视觉篇。 458 | * [Android酷炫实用的开源框架(UI框架)](http://www.androidchina.net/1992.html) - Android酷炫实用的开源框架(UI框架)25个。 459 | 460 | 461 | 交互篇 462 | ------ 463 | 1.SlidingUpPanelLayout 464 | 项目介绍:他的库提供了一种简单的方式来添加一个可拖动滑动面板(由谷歌音乐推广,谷歌地图和Rdio)你的Android应用程序。 465 | 项目地址:https://github.com/umano/AndroidSlidingUpPanel 466 | 467 | 2.FoldableLayout 468 | 项目介绍:折叠展开点击的ITEM 469 | 项目地址:https://github.com/alexvasilkov/FoldableLayout 470 | 471 | 3.android-flip 472 | 项目介绍:折叠翻页效果 473 | 项目地址:https://github.com/openaphid/android-flip 474 | 475 | 4.SwipeBackLayout 476 | 项目介绍:拖动关闭当前活动窗体 477 | 项目地址:https://github.com/Issacw0ng/SwipeBackLayout 478 | 479 | 5.AndroidImageSlider 480 | 项目介绍:一个漂亮的Slider,可以通过自定义达到更好的效果 481 | 项目地址:https://github.com/daimajia/AndroidImageSlider 482 | 483 | 6.Android-ParallaxHeaderViewPager 484 | 项目介绍:栏目展示动画,自动播放,滚动下方列表时候,收缩效果 485 | 项目地址:https://github.com/kmshack/Android-ParallaxHeaderViewPager 486 | 487 | 7.FragmentTransactionExtended 488 | 项目介绍: 489 | 项目地址:https://github.com/DesarrolloAntonio/FragmentTransactionExtended 490 | 491 | 8.FragmentTransactionExtended 492 | 项目介绍:Android按钮可以化身进度 493 | 项目地址:https://github.com/dmytrodanylyk/circular-progress-button 494 | 495 | 9.floatlabelededittext 496 | 项目介绍:简单的实现浮动标签EditText:Android视图使用EditText之上,并提示EditText时填充文本。 497 | 项目地址:https://github.com/wrapp/floatlabelededittext 498 | 499 | 10.QuickReturn 500 | 项目介绍:Showcases QuickReturn view as a header, footer, and both header and footer. 给几乎所有可以滑动的 View 加上快速返回的 Header 或者 Footer,使用非常方便。 501 | 项目地址:https://github.com/lawloretienne/QuickReturn 502 | 503 | 11.VNTNumberPickerPreference 504 | 项目介绍:这是一个易于使用的自定义偏好,打开一个对话框中有许多选择。的值被自动保存,你可以设置默认,min -和maxValue方便地在XML。 505 | 项目地址:https://github.com/vanniktech/VNTNumberPickerPreference 506 | 507 | 12.CircularFloatingActionMenu 508 | 项目介绍:动画,可定制的圆形浮动菜单为Android, 509 | 项目地址:https://github.com/oguzbilgener/CircularFloatingActionMenu 510 | 511 | 13.NiftyDialogEffects 512 | 项目介绍:Dialog的各种打开动画,Nifty Modal Dialog Effects look like this(Nifty Modal Window Effects) 513 | 项目地址:https://github.com/sd6352051/NiftyDialogEffects 514 | 515 | 14.material-menu 516 | 项目介绍:变形安卓菜单,返回和删除按钮 517 | 项目地址:https://github.com/balysv/material-menu 518 | 519 | 15.AndroidViewHover 520 | 项目介绍:我们需要一个悬停视图,显示菜单,显示消息。 521 | 项目地址:https://github.com/daimajia/AndroidViewHover 522 | 523 | 16.PagedHeadListView 524 | 项目介绍:图片轮转切换 525 | 项目地址:https://github.com/JorgeCastilloPrz/PagedHeadListView 526 | 527 | 17.android-movies-demo 528 | 项目介绍:电影列表3级联动,交互 529 | 项目地址:https://github.com/dlew/android-movies-demo 530 | 531 | 18.NiftyNotification 532 | 项目介绍:提示通知栏的各种动画 533 | 项目地址:https://github.com/sd6352051/NiftyNotification 534 | 535 | 19.SwipeBack 536 | 项目介绍:拖动关闭,模范:kicker app(https://play.google.com/store/apps/details?id=com.netbiscuits.kicker) 537 | 项目地址:https://github.com/sockeqwe/SwipeBack 538 | 539 | 20.AndroidSwipeLayout 540 | 项目介绍:类似微信的测拉菜单 541 | 项目地址:https://github.com/daimajia/AndroidSwipeLayout 542 | 543 | 21.SnackBar 544 | 项目介绍: 545 | 项目地址:https://github.com/MrEngineer13/SnackBar 546 | 547 | 22.Swipecards 548 | 项目介绍:A Tinder-like cards effect as of August 2014. You can swipe left or right to like or dislike the content. The library creates a similar effect to Tinder's swipable cards with Fling animation. 549 | 项目地址:https://github.com/Diolor/Swipecards 550 | 551 | 23.LDrawer 552 | 项目介绍:Android抽屉与材料设计动画图标 553 | 项目地址:https://github.com/ikimuhendis/LDrawer 554 | 555 | 视觉篇 556 | ------ 557 | 1.android-stackblur 558 | 项目介绍:毛玻璃,朦胧美 559 | 项目地址:https://github.com/kikoso/android-stackblur 560 | DEMO演示: 561 | 562 | 2.BlurEffectForAndroidDesign 563 | 项目介绍:实现模糊图形技巧 564 | 项目地址:https://github.com/PomepuyN/BlurEffectForAndroidDesign 565 | 566 | 3.Shimmer-android 567 | 项目介绍:闪动的文字 568 | 项目地址:https://github.com/RomainPiel/Shimmer-android 569 | 570 | 4.WizardPager 571 | 项目介绍:它提供了一个示例实现的Android手机上安装一个向导界面 572 | 项目地址:https://github.com/TechFreak/WizardPager 573 | 574 | 5.FloatingActionButton 575 | 项目介绍:浮动的按钮 576 | 项目地址:https://github.com/FaizMalkani/FloatingActionButton 577 | 578 | 6.JumpingBeans 579 | 项目介绍:跳动的文本 580 | 项目地址:https://github.com/frakbot/JumpingBeans 581 | 582 | 7.android_maskable_layout 583 | 项目介绍:可屏蔽的布局 584 | 项目地址:https://github.com/christophesmet/android_maskable_layout 585 | 586 | 8.activityanimation 587 | 项目介绍:Activit之间切换动画 588 | 项目地址:https://github.com/flavienlaurent/activityanimation 589 | 590 | 9.android-shape-imageview 591 | 项目介绍:提供了一组自定义形状的android imageview组件,和一个框架来定义更多的形状。实现着色器和位图基于掩模图像视图。 592 | 项目地址:https://github.com/siyamed/android-shape-imageview 593 | 594 | 10.RippleView 595 | 项目介绍:认为模仿的连锁反应在单击推出了Android L 596 | 项目地址:https://github.com/siriscac/RippleView 597 | 598 | 11.android-ui 599 | 项目介绍:一个小部件可以定义的行为之间的动态变化 600 | 项目地址:https://github.com/markushi/android-ui 601 | 602 | 12.FlatUI 603 | 项目介绍: 604 | 项目地址:https://github.com/eluleci/FlatUI 605 | 606 | ======== 607 | ### UI资源 608 | * [fontawesome](http://fontawesome.io/icons/) - Font-Awesome图标。 609 | * [material-design-responsive-design](http://www.uisdc.com/material-design-responsive-design) - 深聊Material Design复杂响应式设计,[comprehensive-material-design-note](http://www.uisdc.com/comprehensive-material-design-note) - 帮你全面彻底搞定Material design的学习笔记。 610 | * [Iconics](https://github.com/mikepenz/Android-Iconics) - 这是一个可以让你在你的项目中使用几乎任何字体图标的库。默认包含 FontAwesome 和 Material Design Icons 还包含 Meteocons 插件。你甚至可以添加任何你自定义的字体图标(typeface)。 611 | 612 | 613 | ======== 614 | #### 开发资源 615 | ##### 他人开源总结 616 | * [awesome-java](https://github.com/akullpp/awesome-java) - java库列表,[中文版](http://app.memect.com/doc/android.html)。 617 | * [material design 的android开源代码整理](https://github.com/soyoungboy/android-material-design-Open-source-projects/blob/master/README.md) - material design 的android开源代码整理。 618 | * [Android开源项目分类汇总](https://github.com/Trinea/android-open-project) - [Trinea](http://www.trinea.cn/) 国内最多好的开源库总结。 [Android 开源库获取途径整理](http://www.trinea.cn/android/android-open-project-summary/) 619 | * [Android开源库源码分析](https://github.com/android-cn/android-open-project-analysis) - [Trinea](http://www.trinea.cn/) 我们从 Android 开始建了了协作项目,从简介、总体设计、流程图、详细设计全方面分析开源库源码。目前第一期完成,包括10个开源库及5个公共技术点的全面介绍。 [在线网页](http://www.codekk.com/open-source-project-analysis) 620 | 621 | * [年薪30万的Android程序员必须知道的帖子](http://www.itlanbao.com/forum.php?mod=viewthread&tid=45&fromuid=1) - Android开源项目汇总,带效果gif图。 622 | 623 | 624 | * [Android官方培训课程中文版](https://github.com/kesenhoo/android-training-course-in-chinese) - Google Android官方培训课程中文版。 625 | 626 | 627 | * [GitHub优秀Android开源项目](http://www.cnblogs.com/hawkon/p/3593709.html) - GitHub 优秀的 Android 开源项目,很多中文现成项目。 628 | 629 | * [Android开发工具及文档](http://www.androiddevtools.cn/) - androiddevtools,收集整理Android开发所需的Android SDK、开发中用到的工具、Android开发教程、Android设计规范,免费的设计素材等。 630 | 631 | * [material_design](https://github.com/1sters/material_design_zh) - eoeAndroid Material Design 中文协同翻译。 632 | * [Android Design Support Library](http://www.jianshu.com/p/1078568e859f) - Android Design Support Library 的 代码实验——几行代码,让你的 APP 变得花俏。 633 | * [Android-Open-Sourse-Library](https://github.com/1sters/Android-Open-Sourse-Library/) - eoeAndroid 开源组件深度剖析: 1.Http请求组件:Volley\android-async-http\okhttp 2.json数据解析组件:Gson\fast-json\json-smart\Jackson。 634 | * [wiki-eoeandroid](http://wiki.eoeandroid.com/) - wiki-eoeandroid : Android Develop - 开发技术、Android Design - 设计规范、Android Distribute - 软件发布。 635 | 636 | * [Java资源大全](http://www.importnew.com/14429.html) - 国外程序员整理的Java资源大全。 637 | 638 | * [Android开发技术前线](https://github.com/bboyfeiyu/android-tech-frontier) - Android开发技术前线 ( android-tech-frontier ),一个定期翻译、发布国内外Android优质的技术、开源库、软件架构设计、测试等文章的开源项目,让我们的技术跟上国际步伐。。 639 | * [10个常用工具类](http://android.jobbole.com/80826/) - Android快速开发系列 10个常用工具类:1、日志工具类L.java;2、Toast统一管理类;3、SharedPreferences封装类SPUtils;4、单位转换类 DensityUtils;5、SD卡相关辅助类 SDCardUtils;6、屏幕相关辅助类 ScreenUtils;7、App相关辅助类;8、软键盘相关辅助类KeyBoardUtils;9、网络相关辅助类 NetUtils;10、Http相关辅助类 HttpUtils。 640 | * [19个Android开发工具](http://blog.jobbole.com/67169/) - 19个Android 开发工具:1、XAppDbg;2、ChkBugReport;3、APKAnalyser;4、AppXplore;5、Memory Analyzer(MAT);6、Eclipse插件SQLiteManger;7、Robotium;8、ACRA;9、Android Layout Binder;10、Spoon;11、Android Content Provider代码生成器;12、AndroidKickStartR;13、Android Holo颜色生成器;14、ActionBar风格生成器;15、Asset Studio;16、little eye labs;17、Droid Inspector;18、Android Button Maker;19、jsonschema2pojo。 641 | 642 | * [apkbus](http://d.apkbus.com/) - code4app 与 apkbus整理的Android开源资源分类, [ 643 | Android源代码](http://www.apkbus.com/plugin.php?id=codesrc&modo=all)。 644 | * [open-source-android-apps](https://github.com/pcqpcq/open-source-android-apps) - 他人收集的开源代码:Android Wear、Communication 、Education、Finance、Game、Multi-Media、News & Magazines、Personalization、Productivity、Social Network、Tools、Travel & Local。 645 | * [android-developer-tools-list](http://codingfish.top/2015/07/07/android-developer-tools-list/) - Android 常用开发工具 (Android Studio 插件、Android 网站、Android 系统性能调优工具、Android测试工具)。 646 | * [Android平台上最好的几款免费的代码编辑器](http://www.imooc.com/article/1281) - Android平台上最好的几款免费的代码编辑器:Quoda、DroidEdit、AWD、AIDE、CppDroid。 647 | * [androidweekly](http://www.androidweekly.cn/) - android技术开发周报,干货很多。 648 | * [awesome-rails-gem](https://github.com/hothero/awesome-rails-gem) - 收集了很多在平时使用 Rails 开发网站时经常会使用到的 Gem, 当中包括的有用户认证系统, API 接口开发, 文件上传, 站内搜索等优秀的 Gem 源。 649 | * [Android_Data](https://github.com/Freelander/Android_Data) - 一份旨在帮助 Android 初学者快速入门以及找到适合自己学习的资料。 650 | 651 | ##### 中文开发博客列表 652 | * [donal-tong](http://donal-tong.github.io/) - Android [ListView or GridView for ScrollView](http://donal-tong.github.io/blog/2014/05/28/listview-for-scrollview/)。 653 | * [Longdw ](http://www.longdw.com/listview-category-getitemviewtype-getviewtypecount/) - ListView中的分类getItemViewType和getViewTypeCount的使用详解。 654 | * [脉脉不得语](http://www.inferjay.com/) - Android开发周报。 655 | * [Chad.cym的专栏](http://blog.csdn.net/cym492224103) - Chad.cym的专栏:android5.0新特性分析。 656 | 657 | * [搜索最好的 Android 代码——Codota](http://www.imooc.com/article/1086) - 从这里搜索超过七百万精品代码实例——Codota,,不仅只有Github,而且还有知名博客和开发者网站,让你搜索一个东西,不用在找上半天. 658 | 659 | 660 | --------------------------------------------------------------------------------