├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | .cxx 4 | .externalNativeBuild 5 | build 6 | captures 7 | 8 | ._* 9 | *.iml 10 | .DS_Store 11 | local.properties -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, March 2022 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright 2022 Huang JinQun 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Android 个人技术开源影响力排行榜(不定时更新) 2 | 3 | * 项目地址:[Github](https://github.com/getActivity/AndroidGithubBoss) 4 | 5 | * 在某一天,我突发奇想,Android 做开源的大佬很多,但是大多数人无法知道都有哪些人,于是乎我开源了一个项目,用于将 Android 行业中的开源大佬聚齐起来,大家不仅可以认识到这些开源大佬,还能知道他们有哪些优秀的开源作品,可以供我们学习和参考。 6 | 7 | * 于是我个人自发收集了这些人的名单,以下数据均来自纯手工采集,整个过程耗时将近半年,供大家参考,如有遗留请通过 [issue](https://github.com/getActivity/AndroidGithubBoss/issues/new) 通知我补上,如有错误也请通过 [issue](https://github.com/getActivity/AndroidGithubBoss/issues/new) 通知我修改。 8 | 9 | | 排名 | 地区 | Github
用户名 | 个人主页 | 开源项目推荐 | 10 | | :---: | :---: | :--------------: | :----------: | :---------------------: | 11 | | 1 | 美国 | image
[JakeWharton](https://github.com/JakeWharton) | ![](https://github-readme-stats.vercel.app/api?username=JakeWharton) | [butterknife](https://github.com/JakeWharton/butterknife)
![](https://img.shields.io/github/stars/JakeWharton/butterknife.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ViewPagerIndicator](https://github.com/JakeWharton/ViewPagerIndicator)
![](https://img.shields.io/github/stars/JakeWharton/ViewPagerIndicator.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[timber](https://github.com/JakeWharton/timber)
![](https://img.shields.io/github/stars/JakeWharton/timber.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 12 | | 2 | 日本 | image
[wasabeef](https://github.com/wasabeef) | ![](https://github-readme-stats.vercel.app/api?username=wasabeef) | [awesome-android-ui](https://github.com/wasabeef/awesome-android-ui)
![](https://img.shields.io/github/stars/wasabeef/awesome-android-ui.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[recyclerview-animators](https://github.com/wasabeef/recyclerview-animators)
![](https://img.shields.io/github/stars/wasabeef/recyclerview-animators.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[glide-transformations](https://github.com/wasabeef/glide-transformations)
![](https://img.shields.io/github/stars/wasabeef/glide-transformations.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 13 | | 3 | 印度 | image
[amitshekhariitbhu](https://github.com/amitshekhariitbhu) | ![](https://github-readme-stats.vercel.app/api?username=amitshekhariitbhu) | [android-interview-questions](https://github.com/amitshekhariitbhu/android-interview-questions)
![](https://img.shields.io/github/stars/amitshekhariitbhu/android-interview-questions.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Android-Debug-Database](https://github.com/amitshekhariitbhu/Android-Debug-Database)
![](https://img.shields.io/github/stars/amitshekhariitbhu/Android-Debug-Database.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[from-java-to-kotlin](https://github.com/amitshekhariitbhu/from-java-to-kotlin)
![](https://img.shields.io/github/stars/amitshekhariitbhu/from-java-to-kotlin.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 14 | | 4 | 韩国 | image
[skydoves](https://github.com/skydoves) | ![](https://github-readme-stats.vercel.app/api?username=skydoves) | [Pokedex](https://github.com/skydoves/Pokedex)
![](https://img.shields.io/github/stars/skydoves/Pokedex.svg)
[android-developer-roadmap](https://github.com/skydoves/android-developer-roadmap)
![](https://img.shields.io/github/stars/skydoves/android-developer-roadmap.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Balloon](https://github.com/skydoves/Balloon)
![](https://img.shields.io/github/stars/skydoves/Balloon.svg) | 15 | | 5 | 未知 | image
[topjohnwu](https://github.com/topjohnwu) | ![](https://github-readme-stats.vercel.app/api?username=topjohnwu) | [Magisk](https://github.com/topjohnwu/Magisk)
![](https://img.shields.io/github/stars/topjohnwu/Magisk.svg) | 16 | | 6 | 法国 | image
[florent37](https://github.com/florent37) | ![](https://github-readme-stats.vercel.app/api?username=florent37) | [MaterialViewPager](https://github.com/florent37/MaterialViewPager)
![](https://img.shields.io/github/stars/florent37/MaterialViewPager.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ShapeOfView](https://github.com/florent37/ShapeOfView)
![](https://img.shields.io/github/stars/florent37/ShapeOfView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ExpectAnim](https://github.com/florent37/ExpectAnim)
![](https://img.shields.io/github/stars/florent37/ExpectAnim.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 17 | | 7 | 中国 | image
[daimajia](https://github.com/daimajia) | ![](https://github-readme-stats.vercel.app/api?username=daimajia) | [AndroidSwipeLayout](https://github.com/daimajia/AndroidSwipeLayout)
![](https://img.shields.io/github/stars/daimajia/AndroidSwipeLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidViewAnimations](https://github.com/daimajia/AndroidViewAnimations)
![](https://img.shields.io/github/stars/daimajia/AndroidViewAnimations.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[NumberProgressBar](https://github.com/daimajia/NumberProgressBar)
![](https://img.shields.io/github/stars/daimajia/NumberProgressBar.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 18 | | 8 | 中国 | image
[hongyangAndroid](https://github.com/hongyangAndroid) | ![](https://github-readme-stats.vercel.app/api?username=hongyangAndroid) | [okhttputils](https://github.com/hongyangAndroid/okhttputils)
![](https://img.shields.io/github/stars/hongyangAndroid/okhttputils.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidAutoLayout](https://github.com/hongyangAndroid/AndroidAutoLayout)
![](https://img.shields.io/github/stars/hongyangAndroid/AndroidAutoLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[FlowLayout](https://github.com/hongyangAndroid/FlowLayout)
![](https://img.shields.io/github/stars/hongyangAndroid/FlowLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 19 | | 9 | 中国 | image
[Trinea](https://github.com/Trinea) | ![](https://github-readme-stats.vercel.app/api?username=Trinea) | [android-open-project](https://github.com/Trinea/android-open-project)
![](https://img.shields.io/github/stars/Trinea/android-open-project.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[android-common](https://github.com/Trinea/android-common)
![](https://img.shields.io/github/stars/Trinea/android-common.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 20 | | 10 | 中国 | image
[Blankj](https://github.com/Blankj) | ![](https://github-readme-stats.vercel.app/api?username=Blankj)
有效 Star 数 ![](https://img.shields.io/badge/star-40.2k-blue) ![](https://img.shields.io/github/stars/Blankj/AndroidUtilCode.svg) + ![](https://img.shields.io/github/stars/Blankj/AndroidStandardDevelop.svg) + ![](https://img.shields.io/github/stars/Blankj/AndroidOfferKiller.svg) +
![](https://img.shields.io/github/stars/Blankj/FreeProGuard.svg) + ![](https://img.shields.io/github/stars/Blankj/SwipePanel.svg) + ![](https://img.shields.io/github/stars/Blankj/ALog.svg) +
![](https://img.shields.io/github/stars/Blankj/RxBus.svg) + ![](https://img.shields.io/github/stars/Blankj/AucFrameTemplate.svg) + ![](https://img.shields.io/github/stars/Blankj/ProgressRing.svg) +
![](https://img.shields.io/github/stars/Blankj/HelloKotlin.svg)
| [AndroidUtilCode](https://github.com/Blankj/AndroidUtilCode)
![](https://img.shields.io/github/stars/Blankj/AndroidUtilCode.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidStandardDevelop](https://github.com/Blankj/AndroidStandardDevelop)
![](https://img.shields.io/github/stars/Blankj/AndroidStandardDevelop.svg) | 21 | | 11 | 未知 | image
[skylot](https://github.com/skylot) | ![](https://github-readme-stats.vercel.app/api?username=skylot) | [jadx](https://github.com/skylot/jadx)
![](https://img.shields.io/github/stars/skylot/jadx.svg) | 22 | | 12 | 奥地利 | image
[PhilJay](https://github.com/PhilJay) | ![](https://github-readme-stats.vercel.app/api?username=PhilJay) | [MPAndroidChart](https://github.com/PhilJay/MPAndroidChart)
![](https://img.shields.io/github/stars/PhilJay/MPAndroidChart.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 23 | | 13 | 中国 | image
[getActivity](https://github.com/getActivity) | ![](https://github-readme-stats.vercel.app/api?username=getActivity) | [AndroidProject](https://github.com/getActivity/AndroidProject)
![](https://img.shields.io/github/stars/getActivity/AndroidProject.svg)
[XXPermissions](https://github.com/getActivity/XXPermissions)
![](https://img.shields.io/github/stars/getActivity/XXPermissions.svg)
[Toaster](https://github.com/getActivity/Toaster)
![](https://img.shields.io/github/stars/getActivity/Toaster.svg) | 24 | | 14 | 中国 | image
[JessYanCoding](https://github.com/JessYanCoding) | ![](https://github-readme-stats.vercel.app/api?username=JessYanCoding) | [AndroidAutoSize](https://github.com/JessYanCoding/AndroidAutoSize)
![](https://img.shields.io/github/stars/JessYanCoding/AndroidAutoSize.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[MVPArms](https://github.com/JessYanCoding/MVPArms)
![](https://img.shields.io/github/stars/JessYanCoding/MVPArms.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ProgressManager](https://github.com/JessYanCoding/ProgressManager)
![](https://img.shields.io/github/stars/JessYanCoding/ProgressManager.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 25 | | 15 | 奥地利 | image
[mikepenz](https://github.com/mikepenz) | ![](https://github-readme-stats.vercel.app/api?username=mikepenz) | [MaterialDrawer](https://github.com/mikepenz/MaterialDrawer)
![](https://img.shields.io/github/stars/mikepenz/MaterialDrawer.svg)
[Android-ActionItemBadge](https://github.com/mikepenz/Android-ActionItemBadge)
![](https://img.shields.io/github/stars/mikepenz/Android-ActionItemBadge.svg)
[FastAdapter](https://github.com/mikepenz/FastAdapter)
![](https://img.shields.io/github/stars/mikepenz/FastAdapter.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 26 | | 16 | 美国 | image
[afollestad](https://github.com/afollestad) | ![](https://github-readme-stats.vercel.app/api?username=afollestad) | [material-dialogs](https://github.com/afollestad/material-dialogs)
![](https://img.shields.io/github/stars/afollestad/material-dialogs.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[aesthetic](https://github.com/afollestad/aesthetic)
![](https://img.shields.io/github/stars/afollestad/aesthetic.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[drag-select-recyclerview](https://github.com/afollestad/drag-select-recyclerview)
![](https://img.shields.io/github/stars/afollestad/drag-select-recyclerview.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 27 | | 17 | 中国 | image
[scwang90](https://github.com/scwang90) | ![](https://github-readme-stats.vercel.app/api?username=scwang90) | [SmartRefreshLayout](https://github.com/scwang90/SmartRefreshLayout)
![](https://img.shields.io/github/stars/scwang90/SmartRefreshLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 28 | | 18 | 中国 | image
[tiann](https://github.com/tiann) | ![](https://github-readme-stats.vercel.app/api?username=tiann) | [epic](https://github.com/tiann/epic)
![](https://img.shields.io/github/stars/tiann/epic.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[understand-plugin-framework](https://github.com/tiann/understand-plugin-framework)
![](https://img.shields.io/github/stars/tiann/understand-plugin-framework.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[FreeReflection](https://github.com/tiann/FreeReflection)
![](https://img.shields.io/github/stars/tiann/FreeReflection.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 29 | | 19 | 未知 | image
[yuliskov](https://github.com/yuliskov) | ![](https://github-readme-stats.vercel.app/api?username=yuliskov) | [SmartTubeNext](https://github.com/yuliskov/SmartTubeNext)
![](https://img.shields.io/github/stars/yuliskov/SmartTubeNext.svg)
[SmartTubeLegacy](https://github.com/yuliskov/SmartTubeLegacy)
![](https://img.shields.io/github/stars/yuliskov/SmartTubeLegacy.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[LeanKeyKeyboard](https://github.com/yuliskov/LeanKeyKeyboard)
![](https://img.shields.io/github/stars/yuliskov/LeanKeyKeyboard.svg) | 30 | | 20 | 中国 | image
[bingoogolapple](https://github.com/bingoogolapple) | ![](https://github-readme-stats.vercel.app/api?username=bingoogolapple) | [BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android)
![](https://img.shields.io/github/stars/bingoogolapple/BGAQRCode-Android.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[BGARefreshLayout-Android](https://github.com/bingoogolapple/BGARefreshLayout-Android)
![](https://img.shields.io/github/stars/bingoogolapple/BGARefreshLayout-Android.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[BGABanner-Android](https://github.com/bingoogolapple/BGABanner-Android)
![](https://img.shields.io/github/stars/bingoogolapple/BGABanner-Android.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 31 | | 21 | 中国 | image
[CarGuo](https://github.com/CarGuo) | ![](https://github-readme-stats.vercel.app/api?username=CarGuo)
有效 Star 数 ![](https://img.shields.io/badge/star-26k-blue)![](https://img.shields.io/github/stars/CarGuo/GSYVideoPlayer.svg) + ![](https://img.shields.io/github/stars/CarGuo/GSYGithubAppKotlin.svg) + ![](https://img.shields.io/github/stars/CarGuo/GSYRecordWave.svg) +
![](https://img.shields.io/github/stars/CarGuo/GSYRickText.svg) + ![](https://img.shields.io/github/stars/CarGuo/FrescoUtils.svg) + ![](https://img.shields.io/github/stars/CarGuo/CustomActionWebView.svg) +
![](https://img.shields.io/github/stars/CarGuo/LbsMap.svg) + ![](https://img.shields.io/github/stars/CarGuo/LazyRecyclerAdapter.svg) + ![](https://img.shields.io/github/stars/CarGuo/VideoRecord.svg) +
![](https://img.shields.io/github/stars/CarGuo/linkagescroll.svg) + ![](https://img.shields.io/github/stars/CarGuo/AnimationMenu.svg) + ![](https://img.shields.io/github/stars/CarGuo/ImageGalleryOptimize.svg)
| [GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer)
![](https://img.shields.io/github/stars/CarGuo/GSYVideoPlayer.svg)
[GSYGithubAppKotlin](https://github.com/CarGuo/GSYGithubAppKotlin)
![](https://img.shields.io/github/stars/CarGuo/GSYGithubAppKotlin.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[GSYRecordWave](https://github.com/CarGuo/GSYRecordWave)
![](https://img.shields.io/github/stars/CarGuo/GSYRecordWave.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 32 | | 22 | 中国 | image
[CymChad](https://github.com/CymChad) | ![](https://github-readme-stats.vercel.app/api?username=CymChad) | [BaseRecyclerViewAdapterHelper](https://github.com/CymChad/BaseRecyclerViewAdapterHelper)
![](https://img.shields.io/github/stars/CymChad/BaseRecyclerViewAdapterHelper.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 33 | | 23 | 中国 | image
[yanzhenjie](https://github.com/yanzhenjie) | ![](https://github-readme-stats.vercel.app/api?username=yanzhenjie) | [AndPermission](https://github.com/yanzhenjie/AndPermission)
![](https://img.shields.io/github/stars/yanzhenjie/AndPermission.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SwipeRecyclerView](https://github.com/yanzhenjie/SwipeRecyclerView)
![](https://img.shields.io/github/stars/yanzhenjie/SwipeRecyclerView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[NoHttp](https://github.com/yanzhenjie/NoHttp)
![](https://img.shields.io/github/stars/yanzhenjie/NoHttp.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 34 | | 24 | 中国 | image
[mcxiaoke](https://github.com/mcxiaoke) | ![](https://github-readme-stats.vercel.app/api?username=mcxiaoke) | [packer-ng-plugin](https://github.com/mcxiaoke/packer-ng-plugin)
![](https://img.shields.io/github/stars/mcxiaoke/packer-ng-plugin.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[android-volley](https://github.com/mcxiaoke/android-volley)
![](https://img.shields.io/github/stars/mcxiaoke/android-volley.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[awesome-kotlin](https://github.com/mcxiaoke/awesome-kotlin)
![](https://img.shields.io/github/stars/mcxiaoke/awesome-kotlin.svg) | 35 | | 25 | 中国 | image
[barry-ran](https://github.com/barry-ran) | ![](https://github-readme-stats.vercel.app/api?username=barry-ran) | [QtScrcpy](https://github.com/barry-ran/QtScrcpy)
![](https://img.shields.io/github/stars/barry-ran/QtScrcpy.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 36 | | 26 | 澳大利亚 | image
[orhanobut](https://github.com/orhanobut) | ![](https://github-readme-stats.vercel.app/api?username=orhanobut) | [logger](https://github.com/orhanobut/logger)
![](https://img.shields.io/github/stars/orhanobut/logger.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[dialogplus](https://github.com/orhanobut/dialogplus)
![](https://img.shields.io/github/stars/orhanobut/dialogplus.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[hawk](https://github.com/orhanobut/hawk)
![](https://img.shields.io/github/stars/orhanobut/hawk.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 37 | | 27 | 中国 | image
[guolindev](https://github.com/guolindev) | ![](https://github-readme-stats.vercel.app/api?username=guolindev) | [LitePal](https://github.com/guolindev/LitePal)
![](https://img.shields.io/github/stars/guolindev/LitePal.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[giffun](https://github.com/guolindev/giffun)
![](https://img.shields.io/github/stars/guolindev/giffun.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PermissionX](https://github.com/guolindev/PermissionX)
![](https://img.shields.io/github/stars/guolindev/PermissionX.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 38 | | 28 | 美国 | image
[iBotPeaches](https://github.com/iBotPeaches) | ![](https://github-readme-stats.vercel.app/api?username=iBotPeaches) | [Apktool](https://github.com/iBotPeaches/Apktool)
![](https://img.shields.io/github/stars/iBotPeaches/Apktool.svg) | 39 | | 29 | 中国 | image
[zhanghai](https://github.com/zhanghai) | ![](https://github-readme-stats.vercel.app/api?username=zhanghai) | [Douya](https://github.com/zhanghai/Douya)
![](https://img.shields.io/github/stars/zhanghai/Douya.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[MaterialProgressBar](https://github.com/zhanghai/MaterialProgressBar)
![](https://img.shields.io/github/stars/zhanghai/MaterialProgressBar.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[MaterialFiles](https://github.com/zhanghai/MaterialFiles)
![](https://img.shields.io/github/stars/zhanghai/MaterialFiles.svg) | 40 | | 30 | 中国 | image
[pppscn](https://github.com/pppscn) | ![](https://github-readme-stats.vercel.app/api?username=pppscn) | [SmsForwarder](https://github.com/pppscn/SmsForwarder)
![](https://img.shields.io/github/stars/pppscn/SmsForwarder.svg) | 41 | | 31 | 中国 | image
[yangchong211](https://github.com/yangchong211) | ![](https://github-readme-stats.vercel.app/api?username=yangchong211) | [YCAppTool](https://github.com/yangchong211/YCAppTool)
![](https://img.shields.io/github/stars/yangchong211/YCAppTool.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[YCVideoPlayer](https://github.com/yangchong211/YCVideoPlayer)
![](https://img.shields.io/github/stars/yangchong211/YCVideoPlayer.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[YCWebView](https://github.com/yangchong211/YCWebView)
![](https://img.shields.io/github/stars/yangchong211/YCWebView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 42 | | 32 | 中国 | image
[jeasonlzy](https://github.com/jeasonlzy) | ![](https://github-readme-stats.vercel.app/api?username=jeasonlzy) | [okhttp-OkGo](https://github.com/jeasonlzy/okhttp-OkGo)
![](https://img.shields.io/github/stars/jeasonlzy/okhttp-OkGo.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ImagePicker](https://github.com/jeasonlzy/ImagePicker)
![](https://img.shields.io/github/stars/jeasonlzy/ImagePicker.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[NineGridView](https://github.com/jeasonlzy/NineGridView)
![](https://img.shields.io/github/stars/jeasonlzy/NineGridView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 43 | | 33 | 中国 | image
[uknownothingsnow](https://github.com/uknownothingsnow) | ![](https://github-readme-stats.vercel.app/api?username=uknownothingsnow) | [JsBridge](https://github.com/uknownothingsnow/JsBridge)
![](https://img.shields.io/github/stars/uknownothingsnow/JsBridge.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Awesome-RxJava](https://github.com/uknownothingsnow/Awesome-RxJava)
![](https://img.shields.io/github/stars/uknownothingsnow/Awesome-RxJava.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[CircleProgress](https://github.com/uknownothingsnow/CircleProgress)
![](https://img.shields.io/github/stars/uknownothingsnow/CircleProgress.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 44 | | 34 | 中国 | image
[mzlogin](https://github.com/mzlogin) | ![](https://github-readme-stats.vercel.app/api?username=mzlogin) | [awesome-adb](https://github.com/mzlogin/awesome-adb)
![](https://img.shields.io/github/stars/mzlogin/awesome-adb.svg)
[markdown-intro](https://github.com/mzlogin/markdown-intro)
![](https://img.shields.io/github/stars/mzlogin/markdown-intro.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 45 | | 35 | 中国 | image
[KunMinX](https://github.com/KunMinX) | ![](https://github-readme-stats.vercel.app/api?username=KunMinX) | [Jetpack-MVVM-Best-Practice](https://github.com/KunMinX/Jetpack-MVVM-Best-Practice)
![](https://img.shields.io/github/stars/KunMinX/Jetpack-MVVM-Best-Practice.svg)
[Linkage-RecyclerView](https://github.com/KunMinX/Linkage-RecyclerView)
![](https://img.shields.io/github/stars/KunMinX/Linkage-RecyclerView.svg) | 46 | | 36 | 中国 | image
[GcsSloop](https://github.com/GcsSloop) | ![](https://github-readme-stats.vercel.app/api?username=GcsSloop) | [AndroidNote](https://github.com/GcsSloop/AndroidNote)
![](https://img.shields.io/github/stars/GcsSloop/AndroidNote.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[rclayout](https://github.com/GcsSloop/rclayout)
![](https://img.shields.io/github/stars/GcsSloop/rclayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[pager-layoutmanager](https://github.com/GcsSloop/pager-layoutmanager)
![](https://img.shields.io/github/stars/GcsSloop/pager-layoutmanager.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 47 | | 37 | 中国 | image
[H07000223](https://github.com/H07000223) | ![](https://github-readme-stats.vercel.app/api?username=H07000223) | [FlycoTabLayout](https://github.com/H07000223/FlycoTabLayout)
![](https://img.shields.io/github/stars/H07000223/FlycoTabLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 48 | | 38 | 中国 | image
[hehonghui](https://github.com/hehonghui) | ![](https://github-readme-stats.vercel.app/api?username=hehonghui)
有效 Star 数 ![](https://img.shields.io/badge/star-16k-blue) ![](https://img.shields.io/github/stars/hehonghui/android-tech-frontier.svg) + ![](https://img.shields.io/github/stars/hehonghui/AndroidEventBus.svg) + ![](https://img.shields.io/github/stars/hehonghui/Colorful.svg) +
![](https://img.shields.io/github/stars/hehonghui/mockito-doc-zh.svg) + ![](https://img.shields.io/github/stars/hehonghui/android_my_pull_refresh_view.svg) + ![](https://img.shields.io/github/stars/hehonghui/mmat.svg) +
![](https://img.shields.io/github/stars/hehonghui/simple_net_framework.svg) + ![](https://img.shields.io/github/stars/hehonghui/android_dp_analysis_code.svg) + ![](https://img.shields.io/github/stars/hehonghui/the-tech-frontier-app.svg) +
![](https://img.shields.io/github/stars/hehonghui/simple_imageloader.svg) + ![](https://img.shields.io/github/stars/hehonghui/commonadapter.svg) + ![](https://img.shields.io/github/stars/hehonghui/app-test-arch.svg) +
![](https://img.shields.io/github/stars/hehonghui/android_jtm_sourcecode.svg) + ![](https://img.shields.io/github/stars/hehonghui/dp-issues.svg) + ![](https://img.shields.io/github/stars/hehonghui/SimpleTvIME.svg) +
![](https://img.shields.io/github/stars/hehonghui/Chris-Android-PullToRefresh.svg) + ![](https://img.shields.io/github/stars/hehonghui/ripplelayout.svg)
| [android-tech-frontier](https://github.com/hehonghui/android-tech-frontier)
![](https://img.shields.io/github/stars/hehonghui/android-tech-frontier.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidEventBus](https://github.com/hehonghui/AndroidEventBus)
![](https://img.shields.io/github/stars/hehonghui/AndroidEventBus.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Colorful](https://github.com/hehonghui/Colorful)
![](https://img.shields.io/github/stars/hehonghui/Colorful.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 49 | | 39 | 美国 | image
[Konloch](https://github.com/Konloch) | ![](https://github-readme-stats.vercel.app/api?username=Konloch) | [bytecode-viewer](https://github.com/Konloch/bytecode-viewer)
![](https://img.shields.io/github/stars/Konloch/bytecode-viewer.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 50 | | 40 | 中国 | image
[xmuSistone](https://github.com/xmuSistone) | ![](https://github-readme-stats.vercel.app/api?username=xmuSistone) | [ViewpagerTransition](https://github.com/xmuSistone/ViewpagerTransition)
![](https://img.shields.io/github/stars/xmuSistone/ViewpagerTransition.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[CardSlidePanel](https://github.com/xmuSistone/CardSlidePanel)
![](https://img.shields.io/github/stars/xmuSistone/CardSlidePanel.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidPileLayout](https://github.com/xmuSistone/AndroidPileLayout)
![](https://img.shields.io/github/stars/xmuSistone/AndroidPileLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 51 | | 41 | 中国 | image
[xuexiangjys](https://github.com/xuexiangjys) | ![](https://github-readme-stats.vercel.app/api?username=xuexiangjys) | [XUI](https://github.com/xuexiangjys/XUI)
![](https://img.shields.io/github/stars/xuexiangjys/XUI.svg)
[XUpdate](https://github.com/xuexiangjys/XUpdate)
![](https://img.shields.io/github/stars/xuexiangjys/XUpdate.svg)
[XPush](https://github.com/xuexiangjys/XPush)
![](https://img.shields.io/github/stars/xuexiangjys/XPush.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 52 | | 42 | 中国 | image
[JackyAndroid](https://github.com/JackyAndroid) | ![](https://github-readme-stats.vercel.app/api?username=JackyAndroid) | [AndroidInterview-Q-A](https://github.com/JackyAndroid/AndroidInterview-Q-A)
![](https://img.shields.io/github/stars/JackyAndroid/AndroidInterview-Q-A.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidChromium](https://github.com/JackyAndroid/AndroidChromium)
![](https://img.shields.io/github/stars/JackyAndroid/AndroidChromium.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidTVLauncher](https://github.com/JackyAndroid/AndroidTVLauncher)
![](https://img.shields.io/github/stars/JackyAndroid/AndroidTVLauncher.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 53 | | 43 | 中国 | image
[youth5201314](https://github.com/youth5201314) | ![](https://github-readme-stats.vercel.app/api?username=youth5201314) | [banner](https://github.com/youth5201314/banner)
![](https://img.shields.io/github/stars/youth5201314/banner.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[XFrame](https://github.com/youth5201314/XFrame)
![](https://img.shields.io/github/stars/youth5201314/XFrame.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 54 | | 44 | 中国 | image
[Curzibn](https://github.com/Curzibn) | ![](https://github-readme-stats.vercel.app/api?username=Curzibn) | [Luban](https://github.com/Curzibn/Luban)
![](https://img.shields.io/github/stars/Curzibn/Luban.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 55 | | 45 | 中国 | image
[LuckSiege](https://github.com/LuckSiege) | ![](https://github-readme-stats.vercel.app/api?username=LuckSiege) | [PictureSelector](https://github.com/LuckSiege/PictureSelector)
![](https://img.shields.io/github/stars/LuckSiege/PictureSelector.svg) | 56 | | 46 | 印度 | image
[aritraroy](https://github.com/aritraroy) | ![](https://github-readme-stats.vercel.app/api?username=aritraroy) | [UltimateAndroidReference](https://github.com/aritraroy/UltimateAndroidReference)
![](https://img.shields.io/github/stars/aritraroy/UltimateAndroidReference.svg)
[PatternLockView](https://github.com/aritraroy/PatternLockView)
![](https://img.shields.io/github/stars/aritraroy/PatternLockView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PinLockView](https://github.com/aritraroy/PinLockView)
![](https://img.shields.io/github/stars/aritraroy/PinLockView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 57 | | 47 | 中国 | image
[JsonChao](https://github.com/JsonChao) | ![](https://github-readme-stats.vercel.app/api?username=JsonChao) | [Awesome-Android-Interview](https://github.com/JsonChao/Awesome-Android-Interview)
![](https://img.shields.io/github/stars/JsonChao/Awesome-Android-Interview.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Awesome-Android-Notebook](https://github.com/JsonChao/Awesome-Android-Notebook)
![](https://img.shields.io/github/stars/JsonChao/Awesome-Android-Notebook.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Awesome-WanAndroid](https://github.com/JsonChao/Awesome-WanAndroid)
![](https://img.shields.io/github/stars/JsonChao/Awesome-WanAndroid.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 58 | | 48 | 中国 | image
[francistao](https://github.com/francistao) | ![](https://github-readme-stats.vercel.app/api?username=francistao) | [LearningNotes](https://github.com/francistao/LearningNotes)
![](https://img.shields.io/github/stars/francistao/LearningNotes.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 59 | | 49 | 中国 | image
[youlookwhat](https://github.com/youlookwhat) | ![](https://github-readme-stats.vercel.app/api?username=youlookwhat) | [CloudReader](https://github.com/youlookwhat/CloudReader)
![](https://img.shields.io/github/stars/youlookwhat/CloudReader.svg)
[ByWebView](https://github.com/youlookwhat/ByWebView)
![](https://img.shields.io/github/stars/youlookwhat/ByWebView.svg)
[ByRecyclerView](https://github.com/youlookwhat/ByRecyclerView)
![](https://img.shields.io/github/stars/youlookwhat/ByRecyclerView.svg) | 60 | | 50 | 美国 | image
[ashishb](https://github.com/ashishb) | ![](https://github-readme-stats.vercel.app/api?username=ashishb) | [android-security-awesome](https://github.com/ashishb/android-security-awesome)
![](https://img.shields.io/github/stars/ashishb/android-security-awesome.svg)
[adb-enhanced](https://github.com/ashishb/adb-enhanced)
![](https://img.shields.io/github/stars/ashishb/adb-enhanced.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 61 | | 51 | 中国 | image
[gyf-dev](https://github.com/gyf-dev) | ![](https://github-readme-stats.vercel.app/api?username=gyf-dev) | [ImmersionBar](https://github.com/gyf-dev/ImmersionBar)
![](https://img.shields.io/github/stars/gyf-dev/ImmersionBar.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Cactus](https://github.com/gyf-dev/Cactus)
![](https://img.shields.io/github/stars/gyf-dev/Cactus.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 62 | | 52 | 中国 | image
[pxb1988](https://github.com/pxb1988) | ![](https://github-readme-stats.vercel.app/api?username=pxb1988) | [dex2jar](https://github.com/pxb1988/dex2jar)
![](https://img.shields.io/github/stars/pxb1988/dex2jar.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 63 | | 53 | 中国 | image
[YoKeyword](https://github.com/YoKeyword) | ![](https://github-readme-stats.vercel.app/api?username=YoKeyword) | [Fragmentation](https://github.com/YoKeyword/Fragmentation)
![](https://img.shields.io/github/stars/YoKeyword/Fragmentation.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[IndexableRecyclerView](https://github.com/YoKeyword/IndexableRecyclerView)
![](https://img.shields.io/github/stars/YoKeyword/IndexableRecyclerView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 64 | | 54 | 中国 | image
[mcxtzhang](https://github.com/mcxtzhang) | ![](https://github-readme-stats.vercel.app/api?username=mcxtzhang) | [SwipeDelMenuLayout](https://github.com/mcxtzhang/SwipeDelMenuLayout)
![](https://img.shields.io/github/stars/mcxtzhang/SwipeDelMenuLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ZLayoutManager](https://github.com/mcxtzhang/ZLayoutManager)
![](https://img.shields.io/github/stars/mcxtzhang/ZLayoutManager.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SuspensionIndexBar](https://github.com/mcxtzhang/SuspensionIndexBar)
![](https://img.shields.io/github/stars/mcxtzhang/SuspensionIndexBar.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 65 | | 55 | 中国 | image
[jenly1314](https://github.com/jenly1314) | ![](https://github-readme-stats.vercel.app/api?username=jenly1314) | [ZXingLite](https://github.com/jenly1314/ZXingLite)
![](https://img.shields.io/github/stars/jenly1314/ZXingLite.svg)
[AppUpdater](https://github.com/jenly1314/AppUpdater)
![](https://img.shields.io/github/stars/jenly1314/AppUpdater.svg)
[CircleProgressView](https://github.com/jenly1314/CircleProgressView)
![](https://img.shields.io/github/stars/jenly1314/CircleProgressView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 66 | | 56 | 德国 | image
[sockeqwe](https://github.com/sockeqwe) | ![](https://github-readme-stats.vercel.app/api?username=sockeqwe) | [mosby](https://github.com/sockeqwe/mosby)
![](https://img.shields.io/github/stars/sockeqwe/mosby.svg)
[AdapterDelegates](https://github.com/sockeqwe/AdapterDelegates)
![](https://img.shields.io/github/stars/sockeqwe/AdapterDelegates.svg)
[fragmentargs](https://github.com/sockeqwe/fragmentargs)
![](https://img.shields.io/github/stars/sockeqwe/fragmentargs.svg) | 67 | | 57 | 中国 | image
[Tamsiree](https://github.com/Tamsiree) | ![](https://github-readme-stats.vercel.app/api?username=Tamsiree) | [RxTool](https://github.com/Tamsiree/RxTool)
![](https://img.shields.io/github/stars/Tamsiree/RxTool.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 68 | | 58 | 中国 | image
[rengwuxian](https://github.com/rengwuxian) | ![](https://github-readme-stats.vercel.app/api?username=rengwuxian) | [MaterialEditText](https://github.com/rengwuxian/MaterialEditText)
![](https://img.shields.io/github/stars/rengwuxian/MaterialEditText.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 69 | | 59 | 中国 | image
[yipianfengye](https://github.com/yipianfengye) | ![](https://github-readme-stats.vercel.app/api?username=yipianfengye) | [android-zxingLibrary](https://github.com/yipianfengye/android-zxingLibrary)
![](https://img.shields.io/github/stars/yipianfengye/android-zxingLibrary.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[android-adDialog](https://github.com/yipianfengye/android-adDialog)
![](https://img.shields.io/github/stars/yipianfengye/android-adDialog.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[androidProject](https://github.com/yipianfengye/androidProject)
![](https://img.shields.io/github/stars/yipianfengye/androidProject.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 70 | | 60 | 中国 | image
[liangjingkanji](https://github.com/liangjingkanji) | ![](https://github-readme-stats.vercel.app/api?username=liangjingkanji) | [BRV](https://github.com/liangjingkanji/BRV)
![](https://img.shields.io/github/stars/liangjingkanji/BRV.svg)
[Net](https://github.com/liangjingkanji/Net)
![](https://img.shields.io/github/stars/liangjingkanji/Net.svg)
[StateLayout](https://github.com/liangjingkanji/StateLayout)
![](https://img.shields.io/github/stars/liangjingkanji/StateLayout.svg) | 71 | | 61 | 中国 | image
[smuyyh](https://github.com/smuyyh) | ![](https://github-readme-stats.vercel.app/api?username=smuyyh) | [BookReader](https://github.com/smuyyh/BookReader)
![](https://img.shields.io/github/stars/smuyyh/BookReader.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ImageSelector](https://github.com/smuyyh/ImageSelector)
![](https://img.shields.io/github/stars/smuyyh/ImageSelector.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SprintNBA](https://github.com/smuyyh/SprintNBA)
![](https://img.shields.io/github/stars/smuyyh/SprintNBA.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 72 | | 62 | 中国 | image
[luckybilly](https://github.com/luckybilly) | ![](https://github-readme-stats.vercel.app/api?username=luckybilly) | [CC](https://github.com/luckybilly/CC)
![](https://img.shields.io/github/stars/luckybilly/CC.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SmartSwipe](https://github.com/luckybilly/SmartSwipe)
![](https://img.shields.io/github/stars/luckybilly/SmartSwipe.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PreLoader](https://github.com/luckybilly/PreLoader)
![](https://img.shields.io/github/stars/luckybilly/PreLoader.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 73 | | 63 | 中国 | image
[githubwing](https://github.com/githubwing) | ![](https://github-readme-stats.vercel.app/api?username=githubwing) | [ZoomHeader](https://github.com/githubwing/ZoomHeader)
![](https://img.shields.io/github/stars/githubwing/ZoomHeader.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[DragPhotoView](https://github.com/githubwing/DragPhotoView)
![](https://img.shields.io/github/stars/githubwing/DragPhotoView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[GankClient-Kotlin](https://github.com/githubwing/GankClient-Kotlin)
![](https://img.shields.io/github/stars/githubwing/GankClient-Kotlin.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 74 | | 64 | 中国 | image
[sunfusheng](https://github.com/sunfusheng) | ![](https://github-readme-stats.vercel.app/api?username=sunfusheng) | [MarqueeView](https://github.com/sunfusheng/MarqueeView)
![](https://img.shields.io/github/stars/sunfusheng/MarqueeView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[StickyHeaderListView](https://github.com/sunfusheng/StickyHeaderListView)
![](https://img.shields.io/github/stars/sunfusheng/StickyHeaderListView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[GlideImageView](https://github.com/sunfusheng/GlideImageView)
![](https://img.shields.io/github/stars/sunfusheng/GlideImageView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 75 | | 65 | 中国 | image
[laobie](https://github.com/laobie) | ![](https://github-readme-stats.vercel.app/api?username=laobie) | [StatusBarUtil](https://github.com/laobie/StatusBarUtil)
![](https://img.shields.io/github/stars/laobie/StatusBarUtil.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[NineGridImageView](https://github.com/laobie/NineGridImageView)
![](https://img.shields.io/github/stars/laobie/NineGridImageView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 76 | | 66 | 日本 | image
[ksoichiro](https://github.com/ksoichiro) | ![](https://github-readme-stats.vercel.app/api?username=ksoichiro) | [Android-ObservableScrollView](https://github.com/ksoichiro/Android-ObservableScrollView)
![](https://img.shields.io/github/stars/ksoichiro/Android-ObservableScrollView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[awesome-gradle](https://github.com/ksoichiro/awesome-gradle)
![](https://img.shields.io/github/stars/ksoichiro/awesome-gradle.svg)
[gradle-eclipse-aar-plugin](https://github.com/ksoichiro/gradle-eclipse-aar-plugin)
![](https://img.shields.io/github/stars/ksoichiro/gradle-eclipse-aar-plugin.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 77 | | 67 | 中国 | image
[nanchen2251](https://github.com/nanchen2251) | ![](https://github-readme-stats.vercel.app/api?username=nanchen2251) | [CompressHelper](https://github.com/nanchen2251/CompressHelper)
![](https://img.shields.io/github/stars/nanchen2251/CompressHelper.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[BankCardUtils](https://github.com/nanchen2251/BankCardUtils)
![](https://img.shields.io/github/stars/nanchen2251/BankCardUtils.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ScreenRecordHelper](https://github.com/nanchen2251/ScreenRecordHelper)
![](https://img.shields.io/github/stars/nanchen2251/ScreenRecordHelper.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 78 | | 68 | 中国 | image
[kesenhoo](https://github.com/kesenhoo) | ![](https://github-readme-stats.vercel.app/api?username=kesenhoo) | [android-training-course-in-chinese](https://github.com/kesenhoo/android-training-course-in-chinese)
![](https://img.shields.io/github/stars/kesenhoo/android-training-course-in-chinese.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 79 | | 69 | 中国 | image
[hackware1993](https://github.com/hackware1993) | ![](https://github-readme-stats.vercel.app/api?username=hackware1993) | [MagicIndicator](https://github.com/hackware1993/MagicIndicator)
![](https://img.shields.io/github/stars/hackware1993/MagicIndicator.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[WaveView](https://github.com/hackware1993/WaveView)
![](https://img.shields.io/github/stars/hackware1993/WaveView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 80 | | 70 | 法国 | image
[tbruyelle](https://github.com/tbruyelle) | ![](https://github-readme-stats.vercel.app/api?username=tbruyelle) | [RxPermissions](https://github.com/tbruyelle/RxPermissions)
![](https://img.shields.io/github/stars/tbruyelle/RxPermissions.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 81 | | 71 | 中国 | image
[Justson](https://github.com/Justson) | ![](https://github-readme-stats.vercel.app/api?username=Justson) | [AgentWeb](https://github.com/Justson/AgentWeb)
![](https://img.shields.io/github/stars/Justson/AgentWeb.svg)
[AgentWebX5](https://github.com/Justson/AgentWebX5)
![](https://img.shields.io/github/stars/Justson/AgentWebX5.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Downloader](https://github.com/Justson/Downloader)
![](https://img.shields.io/github/stars/Justson/Downloader.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 82 | | 72 | 中国 | image
[android-cjj](https://github.com/android-cjj) | ![](https://github-readme-stats.vercel.app/api?username=android-cjj) | [JJSearchViewAnim](https://github.com/android-cjj/JJSearchViewAnim)
![](https://img.shields.io/github/stars/android-cjj/JJSearchViewAnim.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[BeautifulRefreshLayout](https://github.com/android-cjj/BeautifulRefreshLayout)
![](https://img.shields.io/github/stars/android-cjj/BeautifulRefreshLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Android-MaterialRefreshLayout](https://github.com/android-cjj/Android-MaterialRefreshLayout)
![](https://img.shields.io/github/stars/android-cjj/Android-MaterialRefreshLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 83 | | 73 | 爱沙尼亚 | image
[yarolegovich](https://github.com/yarolegovich) | ![](https://github-readme-stats.vercel.app/api?username=yarolegovich) | [DiscreteScrollView](https://github.com/yarolegovich/DiscreteScrollView)
![](https://img.shields.io/github/stars/yarolegovich/DiscreteScrollView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SlidingRootNav](https://github.com/yarolegovich/SlidingRootNav)
![](https://img.shields.io/github/stars/yarolegovich/SlidingRootNav.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[LovelyDialog](https://github.com/yarolegovich/LovelyDialog)
![](https://img.shields.io/github/stars/yarolegovich/LovelyDialog.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 84 | | 74 | 中国 | image
[dodola](https://github.com/dodola) | ![](https://github-readme-stats.vercel.app/api?username=dodola) | [HotFix](https://github.com/dodola/HotFix)
![](https://img.shields.io/github/stars/dodola/HotFix.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[RocooFix](https://github.com/dodola/RocooFix)
![](https://img.shields.io/github/stars/dodola/RocooFix.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[MetaballLoading](https://github.com/dodola/MetaballLoading)
![](https://img.shields.io/github/stars/dodola/MetaballLoading.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 85 | | 75 | 中国 | image
[yujincheng08](https://github.com/yujincheng08) | ![](https://github-readme-stats.vercel.app/api?username=yujincheng08) | [BiliRoaming](https://github.com/yujincheng08/BiliRoaming)
![](https://img.shields.io/github/stars/yujincheng08/BiliRoaming.svg) | 86 | | 76 | 中国 | image
[hanks-zyh](https://github.com/hanks-zyh) | ![](https://github-readme-stats.vercel.app/api?username=hanks-zyh) | [HTextView](https://github.com/hanks-zyh/HTextView)
![](https://img.shields.io/github/stars/hanks-zyh/HTextView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SmallBang](https://github.com/hanks-zyh/SmallBang)
![](https://img.shields.io/github/stars/hanks-zyh/SmallBang.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PasscodeView](https://github.com/hanks-zyh/PasscodeView)
![](https://img.shields.io/github/stars/hanks-zyh/PasscodeView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 87 | | 77 | 中国 | image
[HarlonWang](https://github.com/HarlonWang) | ![](https://github-readme-stats.vercel.app/api?username=HarlonWang) | [AVLoadingIndicatorView](https://github.com/HarlonWang/AVLoadingIndicatorView)
![](https://img.shields.io/github/stars/HarlonWang/AVLoadingIndicatorView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 88 | | 78 | 中国 | image
[junixapp](https://github.com/junixapp) | ![](https://github-readme-stats.vercel.app/api?username=junixapp) | [XPopup](https://github.com/junixapp/XPopup)
![](https://img.shields.io/github/stars/junixapp/XPopup.svg)
[AndroidKTX](https://github.com/junixapp/AndroidKTX)
![](https://img.shields.io/github/stars/junixapp/AndroidKTX.svg)
[XPopupExt](https://github.com/junixapp/XPopupExt)
![](https://img.shields.io/github/stars/junixapp/XPopupExt.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 89 | | 79 | 波兰 | image
[koral--](https://github.com/koral--) | ![](https://github-readme-stats.vercel.app/api?username=koral--) | [android-gif-drawable](https://github.com/koral--/android-gif-drawable)
![](https://img.shields.io/github/stars/koral--/android-gif-drawable.svg)
[android-gradle-localization-plugin](https://github.com/koral--/android-gradle-localization-plugin)
![](https://img.shields.io/github/stars/koral--/android-gradle-localization-plugin.svg) | 90 | | 80 | 中国 | image
[nekocode](https://github.com/nekocode) | ![](https://github-readme-stats.vercel.app/api?username=nekocode) | [CameraFilter](https://github.com/nekocode/CameraFilter)
![](https://img.shields.io/github/stars/nekocode/CameraFilter.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Badge](https://github.com/nekocode/Badge)
![](https://img.shields.io/github/stars/nekocode/Badge.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Emojix](https://github.com/nekocode/Emojix)
![](https://img.shields.io/github/stars/nekocode/Emojix.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 91 | | 81 | 中国 | image
[seven332](https://github.com/seven332) | ![](https://github-readme-stats.vercel.app/api?username=seven332) | [EhViewer](https://github.com/seven332/EhViewer)
![](https://img.shields.io/github/stars/seven332/EhViewer.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Nimingban](https://github.com/seven332/Nimingban)
![](https://img.shields.io/github/stars/seven332/Nimingban.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[quickjs-android](https://github.com/seven332/quickjs-android)
![](https://img.shields.io/github/stars/seven332/quickjs-android.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 92 | | 82 | 中国 | image
[pedant](https://github.com/pedant) | ![](https://github-readme-stats.vercel.app/api?username=pedant) | [sweet-alert-dialog](https://github.com/pedant/sweet-alert-dialog)
![](https://img.shields.io/github/stars/pedant/sweet-alert-dialog.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[safe-java-js-webview-bridge](https://github.com/pedant/safe-java-js-webview-bridge)
![](https://img.shields.io/github/stars/pedant/safe-java-js-webview-bridge.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 93 | | 83 | 中国 | image
[cymcsg](https://github.com/cymcsg) | ![](https://github-readme-stats.vercel.app/api?username=cymcsg) | [UltimateRecyclerView](https://github.com/cymcsg/UltimateRecyclerView)
![](https://img.shields.io/github/stars/cymcsg/UltimateRecyclerView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[UltimateAndroid](https://github.com/cymcsg/UltimateAndroid)
![](https://img.shields.io/github/stars/cymcsg/UltimateAndroid.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 94 | | 84 | 未知 | image
[roughike](https://github.com/roughike) | ![](https://github-readme-stats.vercel.app/api?username=roughike)
有效 Star 数 ![](https://img.shields.io/badge/star-9.5k-blue) ![](https://img.shields.io/github/stars/roughike/BottomBar.svg) + ![](https://img.shields.io/github/stars/roughike/SwipeSelector.svg)
| [BottomBar](https://github.com/roughike/BottomBar)
![](https://img.shields.io/github/stars/roughike/BottomBar.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SwipeSelector](https://github.com/roughike/SwipeSelector)
![](https://img.shields.io/github/stars/roughike/SwipeSelector.svg) | 95 | | 85 | 中国 | image
[jiang111](https://github.com/jiang111) | ![](https://github-readme-stats.vercel.app/api?username=jiang111) | [awesome-android-tips](https://github.com/jiang111/awesome-android-tips)
![](https://img.shields.io/github/stars/jiang111/awesome-android-tips.svg)
[IndexRecyclerView](https://github.com/jiang111/IndexRecyclerView)
![](https://img.shields.io/github/stars/jiang111/IndexRecyclerView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Awesome-RecyclerView-LayoutManager](https://github.com/jiang111/Awesome-RecyclerView-LayoutManager)
![](https://img.shields.io/github/stars/jiang111/Awesome-RecyclerView-LayoutManager.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 96 | | 86 | 中国 | image
[AweiLoveAndroid](https://github.com/AweiLoveAndroid) | ![](https://github-readme-stats.vercel.app/api?username=AweiLoveAndroid) | [CommonDevKnowledge](https://github.com/AweiLoveAndroid/CommonDevKnowledge)
![](https://img.shields.io/github/stars/AweiLoveAndroid/CommonDevKnowledge.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 97 | | 87 | 中国 | image
[huanghaibin-dev](https://github.com/huanghaibin-dev) | ![](https://github-readme-stats.vercel.app/api?username=huanghaibin-dev) | [CalendarView](https://github.com/huanghaibin-dev/CalendarView)
![](https://img.shields.io/github/stars/huanghaibin-dev/CalendarView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 98 | | 88 | 西班牙 | image
[navasmdc](https://github.com/navasmdc) | ![](https://github-readme-stats.vercel.app/api?username=navasmdc) | [MaterialDesignLibrary](https://github.com/navasmdc/MaterialDesignLibrary)
![](https://img.shields.io/github/stars/navasmdc/MaterialDesignLibrary.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PhoneTutorial](https://github.com/navasmdc/PhoneTutorial)
![](https://img.shields.io/github/stars/navasmdc/PhoneTutorial.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[BorderMenu](https://github.com/navasmdc/BorderMenu)
![](https://img.shields.io/github/stars/navasmdc/BorderMenu.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 99 | | 89 | 日本 | image
[ogaclejapan](https://github.com/ogaclejapan) | ![](https://github-readme-stats.vercel.app/api?username=ogaclejapan) | [SmartTabLayout](https://github.com/ogaclejapan/SmartTabLayout)
![](https://img.shields.io/github/stars/ogaclejapan/SmartTabLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ArcLayout](https://github.com/ogaclejapan/ArcLayout)
![](https://img.shields.io/github/stars/ogaclejapan/ArcLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 100 | | 90 | 中国 | image
[ColorfulCat](https://github.com/ColorfulCat) | ![](https://github-readme-stats.vercel.app/api?username=ColorfulCat) | [AndroidLibs](https://github.com/ColorfulCat/AndroidLibs)
![](https://img.shields.io/github/stars/ColorfulCat/AndroidLibs.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidGuide](https://github.com/ColorfulCat/AndroidGuide)
![](https://img.shields.io/github/stars/ColorfulCat/AndroidGuide.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 101 | | 91 | 中国 | image
[singwhatiwanna](https://github.com/singwhatiwanna) | ![](https://github-readme-stats.vercel.app/api?username=singwhatiwanna) | [dynamic-load-apk](https://github.com/singwhatiwanna/dynamic-load-apk)
![](https://img.shields.io/github/stars/singwhatiwanna/dynamic-load-apk.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[android-art-res](https://github.com/singwhatiwanna/android-art-res)
![](https://img.shields.io/github/stars/singwhatiwanna/android-art-res.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PinnedHeaderExpandableListView](https://github.com/singwhatiwanna/PinnedHeaderExpandableListView)
![](https://img.shields.io/github/stars/singwhatiwanna/PinnedHeaderExpandableListView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 102 | | 92 | 中国 | image
[saiwu-bigkoo](https://github.com/saiwu-bigkoo) | ![](https://github-readme-stats.vercel.app/api?username=saiwu-bigkoo) | [Android-ConvenientBanner](https://github.com/saiwu-bigkoo/Android-ConvenientBanner)
![](https://img.shields.io/github/stars/saiwu-bigkoo/Android-ConvenientBanner.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Android-AlertView](https://github.com/saiwu-bigkoo/Android-AlertView)
![](https://img.shields.io/github/stars/saiwu-bigkoo/Android-AlertView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Android-SVProgressHUD](https://github.com/saiwu-bigkoo/Android-SVProgressHUD)
![](https://img.shields.io/github/stars/saiwu-bigkoo/Android-SVProgressHUD.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 103 | | 93 | 中国 | image
[DingMouRen](https://github.com/DingMouRen) | ![](https://github-readme-stats.vercel.app/api?username=DingMouRen) | [LayoutManagerGroup](https://github.com/DingMouRen/LayoutManagerGroup)
![](https://img.shields.io/github/stars/DingMouRen/LayoutManagerGroup.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PaletteImageView](https://github.com/DingMouRen/PaletteImageView)
![](https://img.shields.io/github/stars/DingMouRen/PaletteImageView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[FallingView](https://github.com/DingMouRen/FallingView)
![](https://img.shields.io/github/stars/DingMouRen/FallingView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 104 | | 94 | 美国 | image
[iSoron](https://github.com/iSoron) | ![](https://github-readme-stats.vercel.app/api?username=iSoron) | [uhabits](https://github.com/iSoron/uhabits)
![](https://img.shields.io/github/stars/iSoron/uhabits.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 105 | | 95 | 中国 | image
[shwenzhang](https://github.com/shwenzhang) | ![](https://github-readme-stats.vercel.app/api?username=shwenzhang) | [AndResGuard](https://github.com/shwenzhang/AndResGuard)
![](https://img.shields.io/github/stars/shwenzhang/AndResGuard.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 106 | | 96 | 中国 | image
[Hitomis](https://github.com/Hitomis) | ![](https://github-readme-stats.vercel.app/api?username=Hitomis) | [transferee](https://github.com/Hitomis/transferee)
![](https://img.shields.io/github/stars/Hitomis/transferee.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[FunGameRefresh](https://github.com/Hitomis/FunGameRefresh)
![](https://img.shields.io/github/stars/Hitomis/FunGameRefresh.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ActivitySwitcher](https://github.com/Hitomis/ActivitySwitcher)
![](https://img.shields.io/github/stars/Hitomis/ActivitySwitcher.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 107 | | 97 | 中国 | image
[kymjs](https://github.com/kymjs) | ![](https://github-readme-stats.vercel.app/api?username=kymjs) | [KJFrameForAndroid](https://github.com/kymjs/KJFrameForAndroid)
![](https://img.shields.io/github/stars/kymjs/KJFrameForAndroid.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[TheMVP](https://github.com/kymjs/TheMVP)
![](https://img.shields.io/github/stars/kymjs/TheMVP.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[RxVolley](https://github.com/kymjs/RxVolley)
![](https://img.shields.io/github/stars/kymjs/RxVolley.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 108 | | 98 | 英国 | image
[igorwojda](https://github.com/igorwojda) | ![](https://github-readme-stats.vercel.app/api?username=igorwojda) | [android-showcase](https://github.com/igorwojda/android-showcase)
![](https://img.shields.io/github/stars/igorwojda/android-showcase.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[kotlin-coding-challenges](https://github.com/igorwojda/kotlin-coding-challenges)
![](https://img.shields.io/github/stars/igorwojda/kotlin-coding-challenges.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 109 | | 99 | 中国 | image
[markzhai](https://github.com/markzhai) | ![](https://github-readme-stats.vercel.app/api?username=markzhai) | [AndroidPerformanceMonitor](https://github.com/markzhai/AndroidPerformanceMonitor)
![](https://img.shields.io/github/stars/markzhai/AndroidPerformanceMonitor.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 110 | | 100 | 中国 | image
[razerdp](https://github.com/razerdp) | ![](https://github-readme-stats.vercel.app/api?username=razerdp) | [BasePopup](https://github.com/razerdp/BasePopup)
![](https://img.shields.io/github/stars/razerdp/BasePopup.svg)
[AnimatedPieView](https://github.com/razerdp/AnimatedPieView)
![](https://img.shields.io/github/stars/razerdp/AnimatedPieView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 111 | | 101 | 中国 | image
[inferjay](https://github.com/inferjay) | ![](https://github-readme-stats.vercel.app/api?username=inferjay) | [AndroidDevTools](https://github.com/inferjay/AndroidDevTools)
![](https://img.shields.io/github/stars/inferjay/AndroidDevTools.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 112 | | 102 | 中国 | image
[MZCretin](https://github.com/MZCretin) | ![](https://github-readme-stats.vercel.app/api?username=MZCretin) | [ExpandableTextView](https://github.com/MZCretin/ExpandableTextView)
![](https://img.shields.io/github/stars/MZCretin/ExpandableTextView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AutoUpdateProject](https://github.com/MZCretin/AutoUpdateProject)
![](https://img.shields.io/github/stars/MZCretin/AutoUpdateProject.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[WifiTransfer-master](https://github.com/MZCretin/WifiTransfer-master)
![](https://img.shields.io/github/stars/MZCretin/WifiTransfer-master.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 113 | | 103 | 中国 | image
[TommyLemon](https://github.com/TommyLemon) | ![](https://github-readme-stats.vercel.app/api?username=TommyLemon) | [Android-ZBLibrary](https://github.com/TommyLemon/Android-ZBLibrary)
![](https://img.shields.io/github/stars/TommyLemon/Android-ZBLibrary.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 114 | | 104 | 英国 | image
[ArthurHub](https://github.com/ArthurHub) | ![](https://github-readme-stats.vercel.app/api?username=ArthurHub) | [Android-Image-Cropper](https://github.com/ArthurHub/Android-Image-Cropper)
![](https://img.shields.io/github/stars/ArthurHub/Android-Image-Cropper.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 115 | | 105 | 中国 | image
[kaleai](https://github.com/kaleai) | ![](https://github-readme-stats.vercel.app/api?username=kaleai) | [Android-Best-Practices](https://github.com/kaleai/Android-Best-Practices)
![](https://img.shields.io/github/stars/kaleai/Android-Best-Practices.svg)
[CommonAdapter](https://github.com/kaleai/CommonAdapter)
![](https://img.shields.io/github/stars/kaleai/CommonAdapter.svg)
[SelectorInjection](https://github.com/kaleai/SelectorInjection)
![](https://img.shields.io/github/stars/kaleai/SelectorInjection.svg) | 116 | | 106 | 中国 | image
[woxingxiao](https://github.com/woxingxiao) | ![](https://github-readme-stats.vercel.app/api?username=woxingxiao) | [BubbleSeekBar](https://github.com/woxingxiao/BubbleSeekBar)
![](https://img.shields.io/github/stars/woxingxiao/BubbleSeekBar.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SlidingUpPanelLayout](https://github.com/woxingxiao/SlidingUpPanelLayout)
![](https://img.shields.io/github/stars/woxingxiao/SlidingUpPanelLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[DashboardView](https://github.com/woxingxiao/DashboardView)
![](https://img.shields.io/github/stars/woxingxiao/DashboardView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 117 | | 107 | 中国 | image
[litesuits](https://github.com/litesuits) | ![](https://github-readme-stats.vercel.app/api?username=litesuits) | [android-common](https://github.com/litesuits/android-common)
![](https://img.shields.io/github/stars/litesuits/android-common.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[android-lite-orm](https://github.com/litesuits/android-lite-orm)
![](https://img.shields.io/github/stars/litesuits/android-lite-orm.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[android-lite-bluetoothLE](https://github.com/litesuits/android-lite-bluetoothLE)
![](https://img.shields.io/github/stars/litesuits/android-lite-bluetoothLE.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 118 | | 108 | 德国 | image
[k0shk0sh](https://github.com/k0shk0sh) | ![](https://github-readme-stats.vercel.app/api?username=k0shk0sh) | [FastHub](https://github.com/k0shk0sh/FastHub)
![](https://img.shields.io/github/stars/k0shk0sh/FastHub.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PermissionHelper](https://github.com/k0shk0sh/PermissionHelper)
![](https://img.shields.io/github/stars/k0shk0sh/PermissionHelper.svg) | 119 | | 109 | 中国 | image
[HotBitmapGG](https://github.com/HotBitmapGG) | ![](https://github-readme-stats.vercel.app/api?username=HotBitmapGG) | [bilibili-android-client](https://github.com/HotBitmapGG/bilibili-android-client)
![](https://img.shields.io/github/stars/HotBitmapGG/bilibili-android-client.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[CreditSesameRingView](https://github.com/HotBitmapGG/CreditSesameRingView)
![](https://img.shields.io/github/stars/HotBitmapGG/CreditSesameRingView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[RingProgressBar](https://github.com/HotBitmapGG/RingProgressBar)
![](https://img.shields.io/github/stars/HotBitmapGG/RingProgressBar.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 120 | | 110 | 中国 | image
[yangfuhai](https://github.com/yangfuhai) | ![](https://github-readme-stats.vercel.app/api?username=yangfuhai) | [ASimpleCache](https://github.com/yangfuhai/ASimpleCache)
![](https://img.shields.io/github/stars/yangfuhai/ASimpleCache.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[afinal](https://github.com/yangfuhai/afinal)
![](https://img.shields.io/github/stars/yangfuhai/afinal.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 121 | | 111 | 未知 | image
[lecho](https://github.com/lecho) | ![](https://github-readme-stats.vercel.app/api?username=lecho) | [hellocharts-android](https://github.com/lecho/hellocharts-android)
![](https://img.shields.io/github/stars/lecho/hellocharts-android.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 122 | | 112 | 中国 | image
[crazycodeboy](https://github.com/crazycodeboy) | ![](https://github-readme-stats.vercel.app/api?username=crazycodeboy)
有效 Star 数 ![](https://img.shields.io/badge/star-7.4k-blue)![](https://img.shields.io/github/stars/crazycodeboy/TakePhoto.svg) + ![](https://img.shields.io/github/stars/crazycodeboy/GroupListView.svg) + ![](https://img.shields.io/github/stars/crazycodeboy/IncrementalUpdate.svg)
| [TakePhoto](https://github.com/crazycodeboy/TakePhoto)
![](https://img.shields.io/github/stars/crazycodeboy/TakePhoto.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 123 | | 113 | 中国 | image
[Skykai521](https://github.com/Skykai521) | ![](https://github-readme-stats.vercel.app/api?username=Skykai521) | [StickerCamera](https://github.com/Skykai521/StickerCamera)
![](https://img.shields.io/github/stars/Skykai521/StickerCamera.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ECTranslation](https://github.com/Skykai521/ECTranslation)
![](https://img.shields.io/github/stars/Skykai521/ECTranslation.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidDeveloperAdvancedManual](https://github.com/Skykai521/AndroidDeveloperAdvancedManual)
![](https://img.shields.io/github/stars/Skykai521/AndroidDeveloperAdvancedManual.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 124 | | 114 | 中国 | image
[leavesCZY](https://github.com/leavesCZY) | ![](https://github-readme-stats.vercel.app/api?username=leavesCZY) | [AndroidGuide](https://github.com/leavesCZY/AndroidGuide)
![](https://img.shields.io/github/stars/leavesCZY/AndroidGuide.svg)
[ReactiveHttp](https://github.com/leavesCZY/ReactiveHttp)
![](https://img.shields.io/github/stars/leavesCZY/ReactiveHttp.svg)
[DoKV](https://github.com/leavesCZY/DoKV)
![](https://img.shields.io/github/stars/leavesCZY/DoKV.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 125 | | 115 | 中国 | image
[stormzhang](https://github.com/stormzhang) | ![](https://github-readme-stats.vercel.app/api?username=stormzhang) | [android-interview-questions-cn](https://github.com/stormzhang/android-interview-questions-cn)
![](https://img.shields.io/github/stars/stormzhang/android-interview-questions-cn.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 126 | | 116 | 印度尼西亚 | image
[zetbaitsu](https://github.com/zetbaitsu) | ![](https://github-readme-stats.vercel.app/api?username=zetbaitsu) | [Compressor](https://github.com/zetbaitsu/Compressor)
![](https://img.shields.io/github/stars/zetbaitsu/Compressor.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 127 | | 117 | 中国 | image
[geeeeeeeeek](https://github.com/geeeeeeeeek) | ![](https://github-readme-stats.vercel.app/api?username=geeeeeeeeek)
有效 Star 数 ![](https://img.shields.io/badge/star-7.2k-blue) ![](https://img.shields.io/github/stars/geeeeeeeeek/WeChatLuckyMoney.svg)
| [WeChatLuckyMoney](https://github.com/geeeeeeeeek/WeChatLuckyMoney)
![](https://img.shields.io/github/stars/geeeeeeeeek/WeChatLuckyMoney.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 128 | | 118 | 中国 | image
[ikew0ng](https://github.com/ikew0ng) | ![](https://github-readme-stats.vercel.app/api?username=ikew0ng) | [SwipeBackLayout](https://github.com/ikew0ng/SwipeBackLayout)
![](https://img.shields.io/github/stars/ikew0ng/SwipeBackLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 129 | | 119 | 中国 | image
[dongjunkun](https://github.com/dongjunkun) | ![](https://github-readme-stats.vercel.app/api?username=dongjunkun) | [DropDownMenu](https://github.com/dongjunkun/DropDownMenu)
![](https://img.shields.io/github/stars/dongjunkun/DropDownMenu.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[CouponView](https://github.com/dongjunkun/CouponView)
![](https://img.shields.io/github/stars/dongjunkun/CouponView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[GanK](https://github.com/dongjunkun/GanK)
![](https://img.shields.io/github/stars/dongjunkun/GanK.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 130 | | 120 | 中国 | image
[ximsfei](https://github.com/ximsfei) | ![](https://github-readme-stats.vercel.app/api?username=ximsfei) | [Android-skin-support](https://github.com/ximsfei/Android-skin-support)
![](https://img.shields.io/github/stars/ximsfei/Android-skin-support.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 131 | | 121 | 中国 | image
[snowdream](https://github.com/snowdream) | ![](https://github-readme-stats.vercel.app/api?username=snowdream) | [awesome-android](https://github.com/snowdream/awesome-android)
![](https://img.shields.io/github/stars/snowdream/awesome-android.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 132 | | 122 | 中国 | image
[wuyr](https://github.com/wuyr) | ![](https://github-readme-stats.vercel.app/api?username=wuyr) | [PathLayoutManager](https://github.com/wuyr/PathLayoutManager)
![](https://img.shields.io/github/stars/wuyr/PathLayoutManager.svg)
[GoogleLibraryVersionQuerier](https://github.com/wuyr/GoogleLibraryVersionQuerier)
![](https://img.shields.io/github/stars/wuyr/GoogleLibraryVersionQuerier.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[LitePager](https://github.com/wuyr/LitePager)
![](https://img.shields.io/github/stars/wuyr/LitePager.svg) | 133 | | 123 | 中国 | image
[Moosphan](https://github.com/Moosphan) | ![](https://github-readme-stats.vercel.app/api?username=Moosphan) | [Android-Daily-Interview](https://github.com/Moosphan/Android-Daily-Interview)
![](https://img.shields.io/github/stars/Moosphan/Android-Daily-Interview.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Material-ProgressView](https://github.com/Moosphan/Material-ProgressView)
![](https://img.shields.io/github/stars/Moosphan/Material-ProgressView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 134 | | 124 | 中国 | image
[JeasonWong](https://github.com/JeasonWong) | ![](https://github-readme-stats.vercel.app/api?username=JeasonWong) | [Particle](https://github.com/JeasonWong/Particle)
![](https://img.shields.io/github/stars/JeasonWong/Particle.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[BezierLoadingView](https://github.com/JeasonWong/BezierLoadingView)
![](https://img.shields.io/github/stars/JeasonWong/BezierLoadingView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SlackLoadingView](https://github.com/JeasonWong/SlackLoadingView)
![](https://img.shields.io/github/stars/JeasonWong/SlackLoadingView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 135 | | 125 | 中国 | image
[Juude](https://github.com/Juude) | ![](https://github-readme-stats.vercel.app/api?username=Juude) | [awesome-android-performance](https://github.com/Juude/awesome-android-performance)
![](https://img.shields.io/github/stars/Juude/awesome-android-performance.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Awesome-Android-Architecture](https://github.com/Juude/Awesome-Android-Architecture)
![](https://img.shields.io/github/stars/Juude/Awesome-Android-Architecture.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 136 | | 126 | 中国 | image
[drakeet](https://github.com/drakeet) | ![](https://github-readme-stats.vercel.app/api?username=drakeet) | [MultiType](https://github.com/drakeet/MultiType)
![](https://img.shields.io/github/stars/drakeet/MultiType.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 137 | | 127 | 中国 | image
[kongzue](https://github.com/kongzue) | ![](https://github-readme-stats.vercel.app/api?username=kongzue) | [DialogX](https://github.com/kongzue/DialogX)
![](https://img.shields.io/github/stars/kongzue/DialogX.svg)
[StackLabel](https://github.com/kongzue/StackLabel)
![](https://img.shields.io/github/stars/kongzue/StackLabel.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[BaseFramework](https://github.com/kongzue/BaseFramework)
![](https://img.shields.io/github/stars/kongzue/BaseFramework.svg) | 138 | | 128 | 中国 | image
[donkingliang](https://github.com/donkingliang) | ![](https://github-readme-stats.vercel.app/api?username=donkingliang) | [ConsecutiveScroller](https://github.com/donkingliang/ConsecutiveScroller)
![](https://img.shields.io/github/stars/donkingliang/ConsecutiveScroller.svg)
[GroupedRecyclerViewAdapter](https://github.com/donkingliang/GroupedRecyclerViewAdapter)
![](https://img.shields.io/github/stars/donkingliang/GroupedRecyclerViewAdapter.svg)
[LabelsView](https://github.com/donkingliang/LabelsView)
![](https://img.shields.io/github/stars/donkingliang/LabelsView.svg) | 139 | | 129 | 中国 | image
[huangyz0918](https://github.com/huangyz0918) | ![](https://github-readme-stats.vercel.app/api?username=huangyz0918) | [AndroidWM](https://github.com/huangyz0918/AndroidWM)
![](https://img.shields.io/github/stars/huangyz0918/AndroidWM.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 140 | | 130 | 中国 | image
[lygttpod](https://github.com/lygttpod) | ![](https://github-readme-stats.vercel.app/api?username=lygttpod) | [SuperTextView](https://github.com/lygttpod/SuperTextView)
![](https://img.shields.io/github/stars/lygttpod/SuperTextView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 141 | | 131 | 中国 | image
[OCNYang](https://github.com/OCNYang) | ![](https://github-readme-stats.vercel.app/api?username=OCNYang) | [Android-Animation-Set](https://github.com/OCNYang/Android-Animation-Set)
![](https://img.shields.io/github/stars/OCNYang/Android-Animation-Set.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[QBox](https://github.com/OCNYang/QBox)
![](https://img.shields.io/github/stars/OCNYang/QBox.svg)
[ContourView](https://github.com/OCNYang/ContourView)
![](https://img.shields.io/github/stars/OCNYang/ContourView.svg) | 142 | | 132 | 中国 | image
[android-notes](https://github.com/android-notes) | ![](https://github-readme-stats.vercel.app/api?username=android-notes) | [Cockroach](https://github.com/android-notes/Cockroach)
![](https://img.shields.io/github/stars/android-notes/Cockroach.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SwissArmyKnife](https://github.com/android-notes/SwissArmyKnife)
![](https://img.shields.io/github/stars/android-notes/SwissArmyKnife.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 143 | | 133 | 中国 | image
[bennyhuo](https://github.com/bennyhuo) | ![](https://github-readme-stats.vercel.app/api?username=bennyhuo) | [Kotlin-Tutorials](https://github.com/bennyhuo/Kotlin-Tutorials)
![](https://img.shields.io/github/stars/bennyhuo/Kotlin-Tutorials.svg)
[DiveIntoKotlinCoroutines-Sources](https://github.com/bennyhuo/DiveIntoKotlinCoroutines-Sources)
![](https://img.shields.io/github/stars/bennyhuo/DiveIntoKotlinCoroutines-Sources.svg)
[KotlinDeepCopy](https://github.com/bennyhuo/KotlinDeepCopy)
![](https://img.shields.io/github/stars/bennyhuo/KotlinDeepCopy.svg) | 144 | | 134 | 中国 | image
[venshine](https://github.com/venshine) | ![](https://github-readme-stats.vercel.app/api?username=venshine) | [GoodView](https://github.com/venshine/GoodView)
![](https://img.shields.io/github/stars/venshine/GoodView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[WheelView](https://github.com/venshine/WheelView)
![](https://img.shields.io/github/stars/venshine/WheelView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidNote](https://github.com/venshine/AndroidNote)
![](https://img.shields.io/github/stars/venshine/AndroidNote.svg) | 145 | | 135 | 中国 | image
[ssseasonnn](https://github.com/ssseasonnn) | ![](https://github-readme-stats.vercel.app/api?username=ssseasonnn) | [RxDownload](https://github.com/ssseasonnn/RxDownload)
![](https://img.shields.io/github/stars/ssseasonnn/RxDownload.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Yasha](https://github.com/ssseasonnn/Yasha)
![](https://img.shields.io/github/stars/ssseasonnn/Yasha.svg)
[RxRouter](https://github.com/ssseasonnn/RxRouter)
![](https://img.shields.io/github/stars/ssseasonnn/RxRouter.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 146 | | 136 | 中国 | image
[zzhoujay](https://github.com/zzhoujay) | ![](https://github-readme-stats.vercel.app/api?username=zzhoujay) | [RichText](https://github.com/zzhoujay/RichText)
![](https://img.shields.io/github/stars/zzhoujay/RichText.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Markdown](https://github.com/zzhoujay/Markdown)
![](https://img.shields.io/github/stars/zzhoujay/Markdown.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 147 | | 137 | 越南 | image
[rey5137](https://github.com/rey5137) | ![](https://github-readme-stats.vercel.app/api?username=rey5137) | [material](https://github.com/rey5137/material)
![](https://img.shields.io/github/stars/rey5137/material.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SlideLayout](https://github.com/rey5137/SlideLayout)
![](https://img.shields.io/github/stars/rey5137/SlideLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 148 | | 138 | 中国 | image
[tangqi92](https://github.com/tangqi92) | ![](https://github-readme-stats.vercel.app/api?username=tangqi92) | [Android-Tips](https://github.com/tangqi92/Android-Tips)
![](https://img.shields.io/github/stars/tangqi92/Android-Tips.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[WaveLoadingView](https://github.com/tangqi92/WaveLoadingView)
![](https://img.shields.io/github/stars/tangqi92/WaveLoadingView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 149 | | 139 | 中国 | image
[wyouflf](https://github.com/wyouflf) | ![](https://github-readme-stats.vercel.app/api?username=wyouflf) | [xUtils3](https://github.com/wyouflf/xUtils3)
![](https://img.shields.io/github/stars/wyouflf/xUtils3.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 150 | | 140 | 中国 | image
[ZhaoKaiQiang](https://github.com/ZhaoKaiQiang) | ![](https://github-readme-stats.vercel.app/api?username=ZhaoKaiQiang) | [KLog](https://github.com/ZhaoKaiQiang/KLog)
![](https://img.shields.io/github/stars/ZhaoKaiQiang/KLog.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidDifficultAnalysis](https://github.com/ZhaoKaiQiang/AndroidDifficultAnalysis)
![](https://img.shields.io/github/stars/ZhaoKaiQiang/AndroidDifficultAnalysis.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 151 | | 141 | 中国 | image
[Jude95](https://github.com/Jude95) | ![](https://github-readme-stats.vercel.app/api?username=Jude95) | [EasyRecyclerView](https://github.com/Jude95/EasyRecyclerView)
![](https://img.shields.io/github/stars/Jude95/EasyRecyclerView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SwipeBackHelper](https://github.com/Jude95/SwipeBackHelper)
![](https://img.shields.io/github/stars/Jude95/SwipeBackHelper.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[RollViewPager](https://github.com/Jude95/RollViewPager)
![](https://img.shields.io/github/stars/Jude95/RollViewPager.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 152 | | 142 | 中国 | image
[GitLqr](https://github.com/GitLqr) | ![](https://github-readme-stats.vercel.app/api?username=GitLqr) | [LQRWeChat](https://github.com/GitLqr/LQRWeChat)
![](https://img.shields.io/github/stars/GitLqr/LQRWeChat.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[LQREmojiLibrary](https://github.com/GitLqr/LQREmojiLibrary)
![](https://img.shields.io/github/stars/GitLqr/LQREmojiLibrary.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[LQRAudioRecord](https://github.com/GitLqr/LQRAudioRecord)
![](https://img.shields.io/github/stars/GitLqr/LQRAudioRecord.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 153 | | 143 | 中国 | image
[oasisfeng](https://github.com/oasisfeng) | ![](https://github-readme-stats.vercel.app/api?username=oasisfeng) | [condom](https://github.com/oasisfeng/condom)
![](https://img.shields.io/github/stars/oasisfeng/condom.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 154 | | 144 | 中国 | image
[huangyanbin](https://github.com/huangyanbin) | ![](https://github-readme-stats.vercel.app/api?username=huangyanbin) | [smartTable](https://github.com/huangyanbin/smartTable)
![](https://img.shields.io/github/stars/huangyanbin/smartTable.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SmartChart](https://github.com/huangyanbin/SmartChart)
![](https://img.shields.io/github/stars/huangyanbin/SmartChart.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 155 | | 145 | 中国 | image
[lihangleo2](https://github.com/lihangleo2) | ![](https://github-readme-stats.vercel.app/api?username=lihangleo2) | [ShadowLayout](https://github.com/lihangleo2/ShadowLayout)
![](https://img.shields.io/github/stars/lihangleo2/ShadowLayout.svg)
[RichEditTextCopyToutiao](https://github.com/lihangleo2/RichEditTextCopyToutiao)
![](https://img.shields.io/github/stars/lihangleo2/RichEditTextCopyToutiao.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SmartLoadingView](https://github.com/lihangleo2/SmartLoadingView)
![](https://img.shields.io/github/stars/lihangleo2/SmartLoadingView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 156 | | 146 | 中国 | image
[qstumn](https://github.com/qstumn) | ![](https://github-readme-stats.vercel.app/api?username=qstumn) | [BadgeView](https://github.com/qstumn/BadgeView)
![](https://img.shields.io/github/stars/qstumn/BadgeView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[VerticalTabLayout](https://github.com/qstumn/VerticalTabLayout)
![](https://img.shields.io/github/stars/qstumn/VerticalTabLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[RadarChart](https://github.com/qstumn/RadarChart)
![](https://img.shields.io/github/stars/qstumn/RadarChart.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 157 | | 147 | 中国 | image
[mxdldev](https://github.com/mxdldev) | ![](https://github-readme-stats.vercel.app/api?username=mxdldev) | [android-mvp-mvvm-flytour](https://github.com/mxdldev/android-mvp-mvvm-flytour)
![](https://img.shields.io/github/stars/mxdldev/android-mvp-mvvm-flytour.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 158 | | 148 | 中国 | image
[hi-dhl](https://github.com/hi-dhl) | ![](https://github-readme-stats.vercel.app/api?username=hi-dhl) | [PokemonGo](https://github.com/hi-dhl/PokemonGo)
![](https://img.shields.io/github/stars/hi-dhl/PokemonGo.svg)
[AndroidX-Jetpack-Practice](https://github.com/hi-dhl/AndroidX-Jetpack-Practice)
![](https://img.shields.io/github/stars/hi-dhl/AndroidX-Jetpack-Practice.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Binding](https://github.com/hi-dhl/Binding)
![](https://img.shields.io/github/stars/hi-dhl/Binding.svg) | 159 | | 149 | 中国 | image
[mthli](https://github.com/mthli) | ![](https://github-readme-stats.vercel.app/api?username=mthli) | [Knife](https://github.com/mthli/Knife)
![](https://img.shields.io/github/stars/mthli/Knife.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Slice](https://github.com/mthli/Slice)
![](https://img.shields.io/github/stars/mthli/Slice.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 160 | | 150 | 中国 | image
[czy1121](https://github.com/czy1121) | ![](https://github-readme-stats.vercel.app/api?username=czy1121) | [update](https://github.com/czy1121/update)
![](https://img.shields.io/github/stars/czy1121/update.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[settingscompat](https://github.com/czy1121/settingscompat)
![](https://img.shields.io/github/stars/czy1121/settingscompat.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[loadinglayout](https://github.com/czy1121/loadinglayout)
![](https://img.shields.io/github/stars/czy1121/loadinglayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 161 | | 151 | 中国 | image
[Jasonchenlijian](https://github.com/Jasonchenlijian) | ![](https://github-readme-stats.vercel.app/api?username=Jasonchenlijian) | [FastBle](https://github.com/Jasonchenlijian/FastBle)
![](https://img.shields.io/github/stars/Jasonchenlijian/FastBle.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 162 | | 152 | 中国 | image
[nining377](https://github.com/nining377) | ![](https://github-readme-stats.vercel.app/api?username=nining377) | [dolby_beta](https://github.com/nining377/dolby_beta)
![](https://img.shields.io/github/stars/nining377/dolby_beta.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[UnblockMusicPro_Xposed](https://github.com/nining377/UnblockMusicPro_Xposed)
![](https://img.shields.io/github/stars/nining377/UnblockMusicPro_Xposed.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 163 | | 153 | 中国 | image
[yingLanNull](https://github.com/yingLanNull) | ![](https://github-readme-stats.vercel.app/api?username=yingLanNull) | [ShadowImageView](https://github.com/yingLanNull/ShadowImageView)
![](https://img.shields.io/github/stars/yingLanNull/ShadowImageView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AlphaTabsIndicator](https://github.com/yingLanNull/AlphaTabsIndicator)
![](https://img.shields.io/github/stars/yingLanNull/AlphaTabsIndicator.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ScrollLayout](https://github.com/yingLanNull/ScrollLayout)
![](https://img.shields.io/github/stars/yingLanNull/ScrollLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 164 | | 154 | 中国 | image
[lizhangqu](https://github.com/lizhangqu) | ![](https://github-readme-stats.vercel.app/api?username=lizhangqu) | [CoreLink](https://github.com/lizhangqu/CoreLink)
![](https://img.shields.io/github/stars/lizhangqu/CoreLink.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[CoreProgress](https://github.com/lizhangqu/CoreProgress)
![](https://img.shields.io/github/stars/lizhangqu/CoreProgress.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 165 | | 155 | 中国 | image
[devaige](https://github.com/devaige) | ![](https://github-readme-stats.vercel.app/api?username=devaige) | [WheelPicker](https://github.com/devaige/WheelPicker)
![](https://img.shields.io/github/stars/devaige/WheelPicker.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[DatePicker](https://github.com/devaige/DatePicker)
![](https://img.shields.io/github/stars/devaige/DatePicker.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[MultiThreadDownloader](https://github.com/devaige/MultiThreadDownloader)
![](https://img.shields.io/github/stars/devaige/MultiThreadDownloader.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 166 | | 156 | 未知 | image
[noties](https://github.com/noties) | ![](https://github-readme-stats.vercel.app/api?username=noties) | [Markwon](https://github.com/noties/Markwon)
![](https://img.shields.io/github/stars/noties/Markwon.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Scrollable](https://github.com/noties/Scrollable)
![](https://img.shields.io/github/stars/noties/Scrollable.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ScrollingBackgroundView](https://github.com/noties/ScrollingBackgroundView)
![](https://img.shields.io/github/stars/noties/ScrollingBackgroundView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 167 | | 157 | 中国 | image
[hugeterry](https://github.com/hugeterry) | ![](https://github-readme-stats.vercel.app/api?username=hugeterry) | [CoordinatorTabLayout](https://github.com/hugeterry/CoordinatorTabLayout)
![](https://img.shields.io/github/stars/hugeterry/CoordinatorTabLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[UpdateFun](https://github.com/hugeterry/UpdateFun)
![](https://img.shields.io/github/stars/hugeterry/UpdateFun.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[coderfun](https://github.com/hugeterry/coderfun)
![](https://img.shields.io/github/stars/hugeterry/coderfun.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 168 | | 158 | 中国 | image
[qingmei2](https://github.com/qingmei2) | ![](https://github-readme-stats.vercel.app/api?username=qingmei2) | [MVVM-Architecture](https://github.com/qingmei2/MVVM-Architecture)
![](https://img.shields.io/github/stars/qingmei2/MVVM-Architecture.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[RxImagePicker](https://github.com/qingmei2/RxImagePicker)
![](https://img.shields.io/github/stars/qingmei2/RxImagePicker.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 169 | | 159 | 中国 | image
[zhpanvip](https://github.com/zhpanvip) | ![](https://github-readme-stats.vercel.app/api?username=zhpanvip) | [BannerViewPager](https://github.com/zhpanvip/BannerViewPager)
![](https://img.shields.io/github/stars/zhpanvip/BannerViewPager.svg)
[viewpagerindicator](https://github.com/zhpanvip/viewpagerindicator)
![](https://img.shields.io/github/stars/zhpanvip/viewpagerindicator.svg)
[AndroidNote](https://github.com/zhpanvip/AndroidNote)
![](https://img.shields.io/github/stars/zhpanvip/AndroidNote.svg) | 170 | | 160 | 中国 | image
[liujingxing](https://github.com/liujingxing) | ![](https://github-readme-stats.vercel.app/api?username=liujingxing) | [rxhttp](https://github.com/liujingxing/rxhttp)
![](https://img.shields.io/github/stars/liujingxing/rxhttp.svg)
[rxlife](https://github.com/liujingxing/rxlife)
![](https://img.shields.io/github/stars/liujingxing/rxlife.svg)
[XmlClassGuard](https://github.com/liujingxing/XmlClassGuard)
![](https://img.shields.io/github/stars/liujingxing/XmlClassGuard.svg) | 171 | | 161 | 中国 | image
[Doikki](https://github.com/Doikki) | ![](https://github-readme-stats.vercel.app/api?username=Doikki) | [DKVideoPlayer](https://github.com/Doikki/DKVideoPlayer)
![](https://img.shields.io/github/stars/Doikki/DKVideoPlayer.svg) | 172 | | 162 | 中国 | image
[Jacksgong](https://github.com/Jacksgong) | ![](https://github-readme-stats.vercel.app/api?username=Jacksgong) | [JKeyboardPanelSwitch](https://github.com/Jacksgong/JKeyboardPanelSwitch)
![](https://img.shields.io/github/stars/Jacksgong/JKeyboardPanelSwitch.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 173 | | 163 | 中国 | image
[zcweng](https://github.com/zcweng) | ![](https://github-readme-stats.vercel.app/api?username=zcweng) | [SwitchButton](https://github.com/zcweng/SwitchButton)
![](https://img.shields.io/github/stars/zcweng/SwitchButton.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 174 | | 164 | 中国 | image
[Sunzxyong](https://github.com/Sunzxyong) | ![](https://github-readme-stats.vercel.app/api?username=Sunzxyong) | [Tiny](https://github.com/Sunzxyong/Tiny)
![](https://img.shields.io/github/stars/Sunzxyong/Tiny.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Recovery](https://github.com/Sunzxyong/Recovery)
![](https://img.shields.io/github/stars/Sunzxyong/Recovery.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 175 | | 165 | 中国 | image
[D-clock](https://github.com/D-clock) | ![](https://github-readme-stats.vercel.app/api?username=D-clock) | [AndroidDaemonService](https://github.com/D-clock/AndroidDaemonService)
![](https://img.shields.io/github/stars/D-clock/AndroidDaemonService.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 176 | | 166 | 中国 | image
[dingjikerbo](https://github.com/dingjikerbo) | ![](https://github-readme-stats.vercel.app/api?username=dingjikerbo) | [Android-BluetoothKit](https://github.com/dingjikerbo/Android-BluetoothKit)
![](https://img.shields.io/github/stars/dingjikerbo/Android-BluetoothKit.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Android-Camera](https://github.com/dingjikerbo/Android-Camera)
![](https://img.shields.io/github/stars/dingjikerbo/Android-Camera.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 177 | | 167 | 中国 | image
[CharonChui](https://github.com/CharonChui) | ![](https://github-readme-stats.vercel.app/api?username=CharonChui) | [AndroidNote](https://github.com/CharonChui/AndroidNote)
![](https://img.shields.io/github/stars/CharonChui/AndroidNote.svg) | 178 | | 168 | 中国 | image
[matrixxun](https://github.com/matrixxun) | ![](https://github-readme-stats.vercel.app/api?username=matrixxun) | [MaterialBadgeTextView](https://github.com/matrixxun/MaterialBadgeTextView)
![](https://img.shields.io/github/stars/matrixxun/MaterialBadgeTextView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PullToZoomInListView](https://github.com/matrixxun/PullToZoomInListView)
![](https://img.shields.io/github/stars/matrixxun/PullToZoomInListView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 179 | | 169 | 中国 | image
[JavaNoober](https://github.com/JavaNoober) | ![](https://github-readme-stats.vercel.app/api?username=JavaNoober) | [BackgroundLibrary](https://github.com/JavaNoober/BackgroundLibrary)
![](https://img.shields.io/github/stars/JavaNoober/BackgroundLibrary.svg)
[Light](https://github.com/JavaNoober/Light)
![](https://img.shields.io/github/stars/JavaNoober/Light.svg)
[AutoSave](https://github.com/JavaNoober/AutoSave)
![](https://img.shields.io/github/stars/JavaNoober/AutoSave.svg) | 180 | | 170 | 中国 | image
[hegaojian](https://github.com/hegaojian) | ![](https://github-readme-stats.vercel.app/api?username=hegaojian) | [JetPackMvvm](https://github.com/hegaojian/JetPackMvvm)
![](https://img.shields.io/github/stars/hegaojian/JetPackMvvm.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[WanAndroid](https://github.com/hegaojian/WanAndroid)
![](https://img.shields.io/github/stars/hegaojian/WanAndroid.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[MvvmHelper](https://github.com/hegaojian/MvvmHelper)
![](https://img.shields.io/github/stars/hegaojian/MvvmHelper.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 181 | | 171 | 中国 | image
[xiaohaibin](https://github.com/xiaohaibin) | ![](https://github-readme-stats.vercel.app/api?username=xiaohaibin) | [XBanner](https://github.com/xiaohaibin/XBanner)
![](https://img.shields.io/github/stars/xiaohaibin/XBanner.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PageMenuLayout](https://github.com/xiaohaibin/PageMenuLayout)
![](https://img.shields.io/github/stars/xiaohaibin/PageMenuLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[XMarqueeView](https://github.com/xiaohaibin/XMarqueeView)
![](https://img.shields.io/github/stars/xiaohaibin/XMarqueeView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 182 | | 172 | 中国 | image
[xinghongfei](https://github.com/xinghongfei) | ![](https://github-readme-stats.vercel.app/api?username=xinghongfei) | [awesome-view](https://github.com/xinghongfei/awesome-view)
![](https://img.shields.io/github/stars/xinghongfei/awesome-view.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Hello-RxJava](https://github.com/xinghongfei/Hello-RxJava)
![](https://img.shields.io/github/stars/xinghongfei/Hello-RxJava.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 183 | | 173 | 中国 | image
[ThirtyDegreesRay](https://github.com/ThirtyDegreesRay) | ![](https://github-readme-stats.vercel.app/api?username=ThirtyDegreesRay) | [OpenHub](https://github.com/ThirtyDegreesRay/OpenHub)
![](https://img.shields.io/github/stars/ThirtyDegreesRay/OpenHub.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 184 | | 174 | 中国 | image
[shehuan](https://github.com/shehuan) | ![](https://github-readme-stats.vercel.app/api?username=shehuan) | [CombineBitmap](https://github.com/shehuan/CombineBitmap)
![](https://img.shields.io/github/stars/shehuan/CombineBitmap.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[NiceImageView](https://github.com/shehuan/NiceImageView)
![](https://img.shields.io/github/stars/shehuan/NiceImageView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[CalendarView](https://github.com/shehuan/CalendarView)
![](https://img.shields.io/github/stars/shehuan/CalendarView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 185 | | 175 | 中国 | image
[iwgang](https://github.com/iwgang) | ![](https://github-readme-stats.vercel.app/api?username=iwgang) | [CountdownView](https://github.com/iwgang/CountdownView)
![](https://img.shields.io/github/stars/iwgang/CountdownView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SimplifySpan](https://github.com/iwgang/SimplifySpan)
![](https://img.shields.io/github/stars/iwgang/SimplifySpan.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[FamiliarRecyclerView](https://github.com/iwgang/FamiliarRecyclerView)
![](https://img.shields.io/github/stars/iwgang/FamiliarRecyclerView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 186 | | 176 | 中国 | image
[jeanboydev](https://github.com/jeanboydev) | ![](https://github-readme-stats.vercel.app/api?username=jeanboydev) | [Android-ReadTheFuckingSourceCode](https://github.com/jeanboydev/Android-ReadTheFuckingSourceCode)
![](https://img.shields.io/github/stars/jeanboydev/Android-ReadTheFuckingSourceCode.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Android-BitherCompress](https://github.com/jeanboydev/Android-BitherCompress)
![](https://img.shields.io/github/stars/jeanboydev/Android-BitherCompress.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 187 | | 177 | 中国 | image
[SusionSuc](https://github.com/SusionSuc) | ![](https://github-readme-stats.vercel.app/api?username=SusionSuc) | [AdvancedAndroid](https://github.com/SusionSuc/AdvancedAndroid)
![](https://img.shields.io/github/stars/SusionSuc/AdvancedAndroid.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[rabbit-client](https://github.com/SusionSuc/rabbit-client)
![](https://img.shields.io/github/stars/SusionSuc/rabbit-client.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[DraggableImageViewer](https://github.com/SusionSuc/DraggableImageViewer)
![](https://img.shields.io/github/stars/SusionSuc/DraggableImageViewer.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 188 | | 178 | 中国 | image
[AlexLiuSheng](https://github.com/AlexLiuSheng) | ![](https://github-readme-stats.vercel.app/api?username=AlexLiuSheng) | [CheckVersionLib](https://github.com/AlexLiuSheng/CheckVersionLib)
![](https://img.shields.io/github/stars/AlexLiuSheng/CheckVersionLib.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[BadgeView](https://github.com/AlexLiuSheng/BadgeView)
![](https://img.shields.io/github/stars/AlexLiuSheng/BadgeView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[FloatView](https://github.com/AlexLiuSheng/FloatView)
![](https://img.shields.io/github/stars/AlexLiuSheng/FloatView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 189 | | 179 | 中国 | image
[binIoter](https://github.com/binIoter) | ![](https://github-readme-stats.vercel.app/api?username=binIoter) | [GuideView](https://github.com/binIoter/GuideView)
![](https://img.shields.io/github/stars/binIoter/GuideView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 190 | | 180 | 中国 | image
[feelschaotic](https://github.com/feelschaotic) | ![](https://github-readme-stats.vercel.app/api?username=feelschaotic) | [AndroidKnowledgeSystem](https://github.com/feelschaotic/AndroidKnowledgeSystem)
![](https://img.shields.io/github/stars/feelschaotic/AndroidKnowledgeSystem.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SDKHotFix](https://github.com/feelschaotic/SDKHotFix)
![](https://img.shields.io/github/stars/feelschaotic/SDKHotFix.svg)
[AndroidPrincipleAnimation](https://github.com/feelschaotic/AndroidPrincipleAnimation)
![](https://img.shields.io/github/stars/feelschaotic/AndroidPrincipleAnimation.svg) | 191 | | 181 | 中国 | image
[iielse](https://github.com/iielse) | ![](https://github-readme-stats.vercel.app/api?username=iielse) | [imageviewer](https://github.com/iielse/imageviewer)
![](https://img.shields.io/github/stars/iielse/imageviewer.svg)
[switchbutton](https://github.com/iielse/switchbutton)
![](https://img.shields.io/github/stars/iielse/switchbutton.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 192 | | 182 | 中国 | image
[yangkun19921001](https://github.com/yangkun19921001) | ![](https://github-readme-stats.vercel.app/api?username=yangkun19921001) | [Blog](https://github.com/yangkun19921001/Blog)
![](https://img.shields.io/github/stars/yangkun19921001/Blog.svg)
[AVSample](https://github.com/yangkun19921001/AVSample)
![](https://img.shields.io/github/stars/yangkun19921001/AVSample.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AVEditor](https://github.com/yangkun19921001/AVEditor)
![](https://img.shields.io/github/stars/yangkun19921001/AVEditor.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 193 | | 183 | 中国 | image
[panpf](https://github.com/panpf) | ![](https://github-readme-stats.vercel.app/api?username=panpf) | [sketch](https://github.com/panpf/sketch)
![](https://img.shields.io/github/stars/panpf/sketch.svg)
[spider-web-score-view](https://github.com/panpf/spider-web-score-view)
![](https://img.shields.io/github/stars/panpf/spider-web-score-view.svg)
[assembly-adapter](https://github.com/panpf/assembly-adapter)
![](https://img.shields.io/github/stars/panpf/assembly-adapter.svg) | 194 | | 184 | 中国 | image
[yangchaojiang](https://github.com/yangchaojiang) | ![](https://github-readme-stats.vercel.app/api?username=yangchaojiang) | [yjPlay](https://github.com/yangchaojiang/yjPlay)
![](https://img.shields.io/github/stars/yangchaojiang/yjPlay.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ZoomPreviewPicture-](https://github.com/yangchaojiang/ZoomPreviewPicture-)
![](https://img.shields.io/github/stars/yangchaojiang/ZoomPreviewPicture-.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[DemoLoadView](https://github.com/yangchaojiang/DemoLoadView)
![](https://img.shields.io/github/stars/yangchaojiang/DemoLoadView.svg) | 195 | | 185 | 中国 | image
[git-xuhao](https://github.com/git-xuhao) | ![](https://github-readme-stats.vercel.app/api?username=git-xuhao) | [KotlinMvp](https://github.com/git-xuhao/KotlinMvp)
![](https://img.shields.io/github/stars/git-xuhao/KotlinMvp.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 196 | | 186 | 中国 | image
[KingJA](https://github.com/KingJA) | ![](https://github-readme-stats.vercel.app/api?username=KingJA) | [LoadSir](https://github.com/KingJA/LoadSir)
![](https://img.shields.io/github/stars/KingJA/LoadSir.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SwitchButton](https://github.com/KingJA/SwitchButton)
![](https://img.shields.io/github/stars/KingJA/SwitchButton.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[MagicMirror](https://github.com/KingJA/MagicMirror)
![](https://img.shields.io/github/stars/KingJA/MagicMirror.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 197 | | 187 | 法国 | image
[aurelhubert](https://github.com/aurelhubert) | ![](https://github-readme-stats.vercel.app/api?username=aurelhubert) | [ahbottomnavigation](https://github.com/aurelhubert/ahbottomnavigation)
![](https://img.shields.io/github/stars/aurelhubert/ahbottomnavigation.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 198 | | 188 | 中国 | image
[xiaoyaoyou1212](https://github.com/xiaoyaoyou1212) | ![](https://github-readme-stats.vercel.app/api?username=xiaoyaoyou1212) | [XSnow](https://github.com/xiaoyaoyou1212/XSnow)
![](https://img.shields.io/github/stars/xiaoyaoyou1212/XSnow.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[BLE](https://github.com/xiaoyaoyou1212/BLE)
![](https://img.shields.io/github/stars/xiaoyaoyou1212/BLE.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ViseFace](https://github.com/xiaoyaoyou1212/ViseFace)
![](https://img.shields.io/github/stars/xiaoyaoyou1212/ViseFace.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 199 | | 189 | 中国 | image
[wildma](https://github.com/wildma) | ![](https://github-readme-stats.vercel.app/api?username=wildma) | [ScreenAdaptation](https://github.com/wildma/ScreenAdaptation)
![](https://img.shields.io/github/stars/wildma/ScreenAdaptation.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[IDCardCamera](https://github.com/wildma/IDCardCamera)
![](https://img.shields.io/github/stars/wildma/IDCardCamera.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PictureSelector](https://github.com/wildma/PictureSelector)
![](https://img.shields.io/github/stars/wildma/PictureSelector.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 200 | | 190 | 中国 | image
[ethanhua](https://github.com/ethanhua) | ![](https://github-readme-stats.vercel.app/api?username=ethanhua) | [Skeleton](https://github.com/ethanhua/Skeleton)
![](https://img.shields.io/github/stars/ethanhua/Skeleton.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 201 | | 191 | 中国 | image
[liuguangqiang](https://github.com/liuguangqiang) | ![](https://github-readme-stats.vercel.app/api?username=liuguangqiang) | [SwipeBack](https://github.com/liuguangqiang/SwipeBack)
![](https://img.shields.io/github/stars/liuguangqiang/SwipeBack.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[CookieBar](https://github.com/liuguangqiang/CookieBar)
![](https://img.shields.io/github/stars/liuguangqiang/CookieBar.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[RippleLayout](https://github.com/liuguangqiang/RippleLayout)
![](https://img.shields.io/github/stars/liuguangqiang/RippleLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 202 | | 192 | 中国 | image
[huburt-Hu](https://github.com/huburt-Hu) | ![](https://github-readme-stats.vercel.app/api?username=huburt-Hu) | [NewbieGuide](https://github.com/huburt-Hu/NewbieGuide)
![](https://img.shields.io/github/stars/huburt-Hu/NewbieGuide.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 203 | | 193 | 中国 | image
[samlss](https://github.com/samlss) | ![](https://github-readme-stats.vercel.app/api?username=samlss) | [Broccoli](https://github.com/samlss/Broccoli)
![](https://img.shields.io/github/stars/samlss/Broccoli.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Lighter](https://github.com/samlss/Lighter)
![](https://img.shields.io/github/stars/samlss/Lighter.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ClockView](https://github.com/samlss/ClockView)
![](https://img.shields.io/github/stars/samlss/ClockView.svg) | 204 | | 194 | 中国 | image
[WVector](https://github.com/WVector) | ![](https://github-readme-stats.vercel.app/api?username=WVector) | [AppUpdate](https://github.com/WVector/AppUpdate)
![](https://img.shields.io/github/stars/WVector/AppUpdate.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 205 | | 195 | 中国 | image
[zjw-swun](https://github.com/zjw-swun) | ![](https://github-readme-stats.vercel.app/api?username=zjw-swun) | [AppMethodOrder](https://github.com/zjw-swun/AppMethodOrder)
![](https://img.shields.io/github/stars/zjw-swun/AppMethodOrder.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AppMethodTime](https://github.com/zjw-swun/AppMethodTime)
![](https://img.shields.io/github/stars/zjw-swun/AppMethodTime.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 206 | | 196 | 中国 | image
[kongqw](https://github.com/kongqw) | ![](https://github-readme-stats.vercel.app/api?username=kongqw) | [OpenCVForAndroid](https://github.com/kongqw/OpenCVForAndroid)
![](https://img.shields.io/github/stars/kongqw/OpenCVForAndroid.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidSerialPort](https://github.com/kongqw/AndroidSerialPort)
![](https://img.shields.io/github/stars/kongqw/AndroidSerialPort.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidRocker](https://github.com/kongqw/AndroidRocker)
![](https://img.shields.io/github/stars/kongqw/AndroidRocker.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 207 | | 197 | 中国 | image
[princekin-f](https://github.com/princekin-f) | ![](https://github-readme-stats.vercel.app/api?username=princekin-f) | [EasyFloat](https://github.com/princekin-f/EasyFloat)
![](https://img.shields.io/github/stars/princekin-f/EasyFloat.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 208 | | 198 | 中国 | image
[huxq17](https://github.com/huxq17) | ![](https://github-readme-stats.vercel.app/api?username=huxq17) | [XRefreshView](https://github.com/huxq17/XRefreshView)
![](https://img.shields.io/github/stars/huxq17/XRefreshView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[FloatBall](https://github.com/huxq17/FloatBall)
![](https://img.shields.io/github/stars/huxq17/FloatBall.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[HandyGridView](https://github.com/huxq17/HandyGridView)
![](https://img.shields.io/github/stars/huxq17/HandyGridView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 209 | | 199 | 中国 | image
[ladingwu](https://github.com/ladingwu) | ![](https://github-readme-stats.vercel.app/api?username=ladingwu) | [dimens_sw](https://github.com/ladingwu/dimens_sw)
![](https://img.shields.io/github/stars/ladingwu/dimens_sw.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[ImageLoaderFramework](https://github.com/ladingwu/ImageLoaderFramework)
![](https://img.shields.io/github/stars/ladingwu/ImageLoaderFramework.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 210 | | 200 | 中国 | image
[mayubao](https://github.com/mayubao) | ![](https://github-readme-stats.vercel.app/api?username=mayubao) | [KuaiChuan](https://github.com/mayubao/KuaiChuan)
![](https://img.shields.io/github/stars/mayubao/KuaiChuan.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Android-Pay](https://github.com/mayubao/Android-Pay)
![](https://img.shields.io/github/stars/mayubao/Android-Pay.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 211 | | 201 | 中国 | image
[chenBingX](https://github.com/chenBingX) | ![](https://github-readme-stats.vercel.app/api?username=chenBingX) | [SuperTextView](https://github.com/chenBingX/SuperTextView)
![](https://img.shields.io/github/stars/chenBingX/SuperTextView.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 212 | | 202 | 中国 | image
[aicareles](https://github.com/aicareles) | ![](https://github-readme-stats.vercel.app/api?username=aicareles) | [Android-BLE](https://github.com/aicareles/Android-BLE)
![](https://img.shields.io/github/stars/aicareles/Android-BLE.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AopArms](https://github.com/aicareles/AopArms)
![](https://img.shields.io/github/stars/aicareles/AopArms.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 213 | | 203 | 中国 | image
[BaronZ88](https://github.com/BaronZ88) | ![](https://github-readme-stats.vercel.app/api?username=BaronZ88) | [MinimalistWeather](https://github.com/BaronZ88/MinimalistWeather)
![](https://img.shields.io/github/stars/BaronZ88/MinimalistWeather.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[Router](https://github.com/BaronZ88/Router)
![](https://img.shields.io/github/stars/BaronZ88/Router.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 214 | | 204 | 中国 | image
[gongwen](https://github.com/gongwen) | ![](https://github-readme-stats.vercel.app/api?username=gongwen) | [MarqueeViewLibrary](https://github.com/gongwen/MarqueeViewLibrary)
![](https://img.shields.io/github/stars/gongwen/MarqueeViewLibrary.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SwipeBackLayout](https://github.com/gongwen/SwipeBackLayout)
![](https://img.shields.io/github/stars/gongwen/SwipeBackLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 215 | | 205 | 中国 | image
[tyzlmjj](https://github.com/tyzlmjj) | ![](https://github-readme-stats.vercel.app/api?username=tyzlmjj) | [PagerBottomTabStrip](https://github.com/tyzlmjj/PagerBottomTabStrip)
![](https://img.shields.io/github/stars/tyzlmjj/PagerBottomTabStrip.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 216 | | 206 | 中国 | image
[AbrahamCaiJin](https://github.com/AbrahamCaiJin) | ![](https://github-readme-stats.vercel.app/api?username=AbrahamCaiJin) | [CommonUtilLibrary](https://github.com/AbrahamCaiJin/CommonUtilLibrary)
![](https://img.shields.io/github/stars/AbrahamCaiJin/CommonUtilLibrary.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 217 | | 207 | 中国 | image
[jiangqqlmj](https://github.com/jiangqqlmj) | ![](https://github-readme-stats.vercel.app/api?username=jiangqqlmj) | [FastDev4Android](https://github.com/jiangqqlmj/FastDev4Android)
![](https://img.shields.io/github/stars/jiangqqlmj/FastDev4Android.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[DragHelper4QQ](https://github.com/jiangqqlmj/DragHelper4QQ)
![](https://img.shields.io/github/stars/jiangqqlmj/DragHelper4QQ.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 218 | | 208 | 中国 | image
[linglongxin24](https://github.com/linglongxin24) | ![](https://github-readme-stats.vercel.app/api?username=linglongxin24) | [DylanStepCount](https://github.com/linglongxin24/DylanStepCount)
![](https://img.shields.io/github/stars/linglongxin24/DylanStepCount.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 219 | | 209 | 中国 | image
[JingYeoh](https://github.com/JingYeoh) | ![](https://github-readme-stats.vercel.app/api?username=JingYeoh) | [FragmentRigger](https://github.com/JingYeoh/FragmentRigger)
![](https://img.shields.io/github/stars/JingYeoh/FragmentRigger.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[VercodeEditText](https://github.com/JingYeoh/VercodeEditText)
![](https://img.shields.io/github/stars/JingYeoh/VercodeEditText.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[SlideMenuLayout](https://github.com/JingYeoh/SlideMenuLayout)
![](https://img.shields.io/github/stars/JingYeoh/SlideMenuLayout.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 220 | | 210 | 中国 | image
[Zhaoss](https://github.com/Zhaoss) | ![](https://github-readme-stats.vercel.app/api?username=Zhaoss) | [WeiXinRecordedDemo](https://github.com/Zhaoss/WeiXinRecordedDemo)
![](https://img.shields.io/github/stars/Zhaoss/WeiXinRecordedDemo.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 221 | | 211 | 中国 | image
[yale8848](https://github.com/yale8848) | ![](https://github-readme-stats.vercel.app/api?username=yale8848) | [CacheWebView](https://github.com/yale8848/CacheWebView)
![](https://img.shields.io/github/stars/yale8848/CacheWebView.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[RetrofitCache](https://github.com/yale8848/RetrofitCache)
![](https://img.shields.io/github/stars/yale8848/RetrofitCache.svg)
[EasyIncrementalUpdate](https://github.com/yale8848/EasyIncrementalUpdate)
![](https://img.shields.io/github/stars/yale8848/EasyIncrementalUpdate.svg) | 222 | | 212 | 中国 | image
[kezong](https://github.com/kezong) | ![](https://github-readme-stats.vercel.app/api?username=kezong) | [fat-aar-android](https://github.com/kezong/fat-aar-android)
![](https://img.shields.io/github/stars/kezong/fat-aar-android.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 223 | | 213 | 中国 | image
[jianjunxiao](https://github.com/jianjunxiao) | ![](https://github-readme-stats.vercel.app/api?username=jianjunxiao) | [NiceVieoPlayer](https://github.com/jianjunxiao/NiceVieoPlayer)
![](https://img.shields.io/github/stars/jianjunxiao/NiceVieoPlayer.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[wanandroid](https://github.com/jianjunxiao/wanandroid)
![](https://img.shields.io/github/stars/jianjunxiao/wanandroid.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 224 | | 214 | 中国 | image
[jiajunhui](https://github.com/jiajunhui) | ![](https://github-readme-stats.vercel.app/api?username=jiajunhui) | [PlayerBase](https://github.com/jiajunhui/PlayerBase)
![](https://img.shields.io/github/stars/jiajunhui/PlayerBase.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[MediaLoader](https://github.com/jiajunhui/MediaLoader)
![](https://img.shields.io/github/stars/jiajunhui/MediaLoader.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 225 | | 215 | 中国 | image
[BolexLiu](https://github.com/BolexLiu) | ![](https://github-readme-stats.vercel.app/api?username=BolexLiu) | [AutoEx](https://github.com/BolexLiu/AutoEx)
![](https://img.shields.io/github/stars/BolexLiu/AutoEx.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[PressScanCode](https://github.com/BolexLiu/PressScanCode)
![](https://img.shields.io/github/stars/BolexLiu/PressScanCode.svg) ![](https://img.shields.io/badge/-deprecated-yellow)
[AndroidHookStartActivity](https://github.com/BolexLiu/AndroidHookStartActivity)
![](https://img.shields.io/github/stars/BolexLiu/AndroidHookStartActivity.svg) ![](https://img.shields.io/badge/-deprecated-yellow) | 226 | 227 | #### 标准及要求 228 | 229 | * 上榜规则: 230 | 231 | * 不能违背开源精神 232 | 233 | * 必须是 Android 开发者 234 | 235 | * 必须是以个人的名义开源 236 | 237 | * Star 数不能通过任何手段掺假 238 | 239 | * 只收录个人 Star 数在 3k 及以上 240 | 241 | * 排名规则: 242 | 243 | * 根据有效 Star 数从高到低进行排序 244 | 245 | * 如果个人的 Star 数小于 10k,有效 Star 数则直接按照个人 Star 总数来计算 246 | 247 | * 如果个人的 Star 数大于 10k 小于 20k,有效 Star 数必须要占个人 Star 总数的 **60%** 才能按照个人 Star 总数来计算,否则只能按照有效 Star 数来计算 248 | 249 | * 如果个人的 Star 数大于 20k 小于 30k,有效 Star 数必须要占个人 Star 总数的 **70%** 才能按照个人 Star 总数来计算,否则只能按照有效 Star 数来计算 250 | 251 | * 如果个人的 Star 数大于 30k 小于 40k,有效 Star 数必须要占个人 Star 总数的 **80%** 才能按照个人 Star 总数来计算,否则只能按照有效 Star 数来计算 252 | 253 | * 如果个人的 Star 数大于 40k 及以上,有效 Star 数必须要占个人 Star 总数的 **90%** 才能按照个人 Star 总数来计算,否则只能按照有效 Star 数来计算 254 | 255 | * 有效 Star 数的定义: 256 | 257 | * 必须和 Android 相关的开源项目 Star 数,不限开发语言,不限类型 258 | 259 | * 排除非 Android 平台的开源项目 Star 数,如 Flutter、ReactNative、Weex 等等 260 | 261 | * 排除和 Android 无关的开源项目 Star 数,如算法题、简历模板、表情包等等 262 | 263 | * 排除简单 fork 他人的开源项目所得的 Star 数(没有属于自己的任何提交) 264 | 265 | * 开源项目推荐规则: 266 | 267 | * 非简单的 Demo 工程 268 | 269 | * 最多推荐三个开源项目 270 | 271 | * 必须是和 Android 开发相关的项目 272 | 273 | * 排除 Flutter、RN 等跨端开发的项目 274 | 275 | * 开源项目过时标记规则: 276 | 277 | * 基于 eclipse 项目 278 | 279 | * 明确注明项目已经不维护 280 | 281 | * 开源项目的仓库已经被标记为只读 282 | 283 | * 代码最后更新停留在三个月前并且超过三个月没有处理 issue 284 | 285 | * 只修改 `README.md` 文件的更新提交不计入内 286 | 287 | * 非及时更新,更新频率为一年更新一次,更新时只检查没有过时的项目 288 | 289 | * 一旦开源项目被标记过时,则无法删除,需要提 issue 给作者解除 290 | 291 | * 开源项目刷 Star 鉴定标准: 292 | 293 | * 通过 [Star 趋势图](https://starchart.cc/) 来判断,star 涨势图中的拐角处形成的角度无限接近于 90 度 294 | 295 | * 查看 issue:通过 issue 的数量、作者的回复速度、问题是否解决这几个维度来判断 296 | 297 | * 查看提交记录:通过代码的数量、代码的质量、commit 的描述这几个维度来判断 298 | 299 | * 对比 fork 数量:一般 star 数和 fork 数正常的比例为 `10 : 1` 到 `10 : 2` 之间 300 | 301 | * 如果框架在 [jitpack 仓库](https://jitpack.io/) 发布的,可以通过查看每月的下载量,月下载量一般情况不会少于现有的 star 数,正常是 star 数的 2 到 10 倍左右 302 | 303 | #### 为什么那么多开源项目不维护了? 304 | 305 | * 这是很多人问过我的一个问题,大多人可能无法理解好好的开源项目就不维护了,我觉得主要原因有如下几个: 306 | 307 | * 不挣钱:我想跟大家说的是,开源项目不维护其实是一件最正常不过的事情了,我可以跟大家说一个残酷的事实,我做了那么多开源框架,也被很多人应用到自己项目中,被很多人夸赞过,但是这些并不能为我带来任何经济效益,简单来讲就是为爱发电,说白了不挣钱,等于免费为大家服务。包括大家给开源作者点 Star 也好,点 Follow 也罢,这些只能算是对开源作者的支持,但是不会给作者产生任何经济效益,**不挣钱也将意味做这件事其实是亏钱的,因为房租要钱、水电要钱、吃饭也要钱,人活着是有生存成本的**。 308 | 309 | * 地位低:小时候我们常说老师像蜡烛,燃烧自己照亮他人,我觉得开源作者更合适用这句话,因为老师至少还是有工资的,而开源作者则是秉承自愿原则,付出多与少都是没有工资的,还有老师的社会地位也不一样,但是开源作者在行业中的地位并不高,几乎等于没有,我自己来讲,几乎没有感受到尊重二字,更多感受到世态炎凉,大致表现为: 310 | 311 | 1. 呼之即来挥之即去,解决完问题没有一句谢谢,开源作者免费为人民服务是应该的; 312 | 313 | 2. 有很多人都想来白嫖你的时间,具体表现为就算这个问题不属于框架的问题也会找上开源作者; 314 | 315 | 3. 直接抄框架的代码到项目中,并且直接将代码中头注释中开源作者的署名剔除掉,然后把自己的名字加上; 316 | 317 | 4. 基于框架自己本地维护了一套代码,后续遇到难题搞不定的时候找上开源作者要求基于他个人的当前版本去解决; 318 | 319 | 5. 总是有人一遇到问题,就是不看文档,第一时间找到开源作者,问这个问题怎么解决,将开源作者硬活生生逼成了一台复读机; 320 | 321 | 6. 总有人想白嫖作者,具体操作是加作者好友,备注美其名曰说是讨论技术,结果一通过好友请求,一上来就问他个人遇到的这个技术问题怎么解决; 322 | 323 | 7. 有的人用了框架,一遇到问题也不反馈给作者,会选择在公共场合责怪作者,甚至辱骂作者都有,其他看到的人都选择默不作声,基本没有人出面制止; 324 | 325 | 8. 也有的人,看到框架不错,直接占为己有,简单修改了对外调用类的名称,并发布了另外一个开源库,并且对外宣传框架是自研的; 326 | 327 | 9. ................................................... 328 | 329 | * 性质变了:大家还记得开源的初衷吗?一个人开源,许多人来帮忙一起做好,但是目前的实际情况是,一旦使用框架的人出现了问题,大多数人第一时间会找到作者,提个 issue 丢给作者处理,自己就坐等作者解决就可以了,如果作者弃更了,那么还可能会引来招骂,有的人还会说出作者不负责任、亏我那么支持你等负面的话。在这里我其实想跟大家说的是,开源作者其实没有任何义务帮你处理问题,虽然这句话大家不太中听,但我必须得说,因为我们在使用开源框架的时候,并没有付给开源作者任何一分钱,现在出了问题,开源作者自然也可以不处理,换一个角度想,你利用开源框架挣到的钱会分给开源作者吗?所以这个是在情理之中,换成你也很可能那么做,人都是自私的,切莫把自己标榜成圣人。 330 | 331 | * 对此,我其实想给大家谈谈我的感受,以及我对开源的看法: 332 | 333 | * 开源作者是伟大的:我问大家一个问题,假设有一个公司招你过去,老板说不给工资并且让你一直干下去,你能坚持多久?开源就是这种模式,一直付出但就是不挣钱,我相信很多人都无法接受这个结果,想都不用想直接拒绝了,但是仍然有一些开源作者坚持了很多才放弃维护,这无疑是非常伟大的,换位思考,如果是你会那么做吗?大家要明白一件事,做开源其实占用是开源作者的业余时间,当星期六日大家都在休息的时候,开源作者还在给框架加功能和修 Bug,开源作者大可不必那么累,也可以选择星期六日躺在床上睡大觉玩游戏,但是他们选择了一条别人不敢选择的路去坚守,所以哪有什么岁月静好,不过是有人替你负重前行。还有一点,无论开源作者维不维护,他们都是伟大的,至少证明他们曾经付出了,不能因为现在放弃维护了就否定了,我们应该要给予尊重和认可。 334 | 335 | * 请善待开源作者:我觉得作为开源作者来说,承受了很多不该承受的事情,例如很多人跑来问我各种碰到的技术难题,早期粉丝少的时候还尝试帮忙解决,但是发现我的粉丝多了之后,发现这个事情我压根承受不住,就问你能顶得住每天都有几十个人来问你技术问题吗?我也可以选择不回复,但是我还是礼貌性地做了统一回复,我目前不处理框架之外的问题。这个经历让我感觉开源作者一旦做了开源,就摊上大麻烦了,不管是不是框架的问题都会找上我,并不是我不想帮大家,而我跟大家一样,很多时候工作和开源已经把我掏空了,已经没有多余的时间和精力做别的事情,我自己都犹如泥菩萨过江,自身难保。 336 | 337 | * 请不要做技术的巨婴:另外我觉得很多人在网络上面很轻浮,动不动就劳烦别人,这要是来到了现实中,可是要欠了别人一次人情,如果帮完了没有一点表示,那么下次再有问题的时候,那么别人是不会再理睬你的;但是在网络中,大家没有任何顾忌,还有人完全不顾及开源作者的感受,就觉得这个忙对你这种大佬很简单,你就是应该要帮我,甚至在帮完之后连句谢谢都懒得讲,对此我只想说一句:别人帮你是情分,不帮你是本分。 338 | 339 | * 没有任何开源项目是一直维护的:大家看到很多开源项目不维护了,很多人都感觉 Android 快不行了,但是这个是正常现象,不信你过去看看 iOS 行业,其实大家都差不多,我只想跟大家说,没有任何开源项目是一直维护的,因为开源项目本身就不挣钱,开源作者人家也要恰饭的,年纪大点家里还有老婆孩子要养,你说还维护这个开源项目,只谈理想不谈钱的事情还现实吗?所以维护是情分,不维护是本分。我自己目前还在维护开源项目,这完全得益于我还没有结婚,并且还有一份工作养活着,当我某一天因为某种原因离开 Android 行业了,手头的开源项目大概率也是会停更的。没有任何开源作者能一直维护下去,迟早有一天会停更,大家且行且珍惜。 340 | 341 | * 在大家认知中,开源项目不维护是一件不正常的事情,但是如果你看完了上面这些话,你会相信开源项目不维护是一件再正常不过的事情。不过总是要有人肩负起开源的大旗,我们这代开源人迟早某一天会扛不动,这份扛大旗的重任将会留给行业的后辈们,至于后面能有多少后辈们愿意去做,得看大家未来对待开源的态度是什么样的,如果还是现在的态度,我觉得还是比较难的,至于怎么改变只能靠大家去共同努力了。 342 | 343 | ## 致谢 344 | 345 | * 向所有开源作者致敬,感谢一路的美好及陪伴! 346 | 347 | ## License 348 | 349 | ```text 350 | Copyright 2022 Huang JinQun 351 | 352 | Licensed under the Apache License, Version 2.0 (the "License"); 353 | you may not use this file except in compliance with the License. 354 | You may obtain a copy of the License at 355 | 356 | http://www.apache.org/licenses/LICENSE-2.0 357 | 358 | Unless required by applicable law or agreed to in writing, software 359 | distributed under the License is distributed on an "AS IS" BASIS, 360 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 361 | See the License for the specific language governing permissions and 362 | limitations under the License. 363 | ``` --------------------------------------------------------------------------------