├── .gitignore ├── .idea ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README-ZH.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── sfyc │ │ └── simple │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── sfyc │ │ │ └── simple │ │ │ ├── SimpleActivity.kt │ │ │ └── SplashActivity.java │ └── res │ │ ├── layout │ │ ├── activity_simple.xml │ │ └── activity_splash.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── peaty.jpg │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── sfyc │ └── simple │ └── ExampleUnitTest.java ├── build.gradle ├── download └── app-debug.apk ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── sfyc │ │ └── ctpv │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── sfyc │ │ │ └── ctpv │ │ │ └── CountTimeProgressView.kt │ └── res │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── sfyc │ └── ctpv │ └── ExampleUnitTest.java ├── screenshot └── ctpv-video-to-gif.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 36 | 37 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README-ZH.md: -------------------------------------------------------------------------------- 1 | [![twitter](https://img.shields.io/badge/twitter-sfyc23-blue.svg)](https://twitter.com/sfyc23) 2 | [![微博](https://img.shields.io/badge/%E5%BE%AE%E5%8D%9A-sfyc23-blue.svg)](https://weibo.com/sfyc23) 3 | [![API](https://img.shields.io/badge/API-%2B14-green.svg)](https://android-arsenal.com/api?level=14) 4 | [![Maven Central](https://img.shields.io/badge/Maven%20Central-1.1.3-green.svg)]() 5 | [![License](https://img.shields.io/badge/License-Apache%202.0-red.svg)]() 6 | # CountTimeProgressView 7 | 8 | **CountTimeProgressView** - 一个用 Kotlin 实现的有倒计时功能的,并能显现进度的 Android 库。 9 | 10 | 11 | ## Sample 12 | ![页面动图][1] 13 | 14 | 15 | ## 用法 16 | 17 | **关于这个项目的实现功能,你可以通过 lib 包下的 [CountTimeProgressView][2] 查看实现** 18 | 19 | ### step 1 20 | 21 | 你可以将该库作为本地库项目加入,或者在 build.gradle 中添加依赖项。 22 | 23 | ```groovy 24 | dependencies { 25 | compile 'com.sfyc.ctpv:library:1.1.3' 26 | } 27 | ``` 28 | 29 | ### Step 2 30 | 31 | 在你的 layout 中添加 CountTimeProgressView 控件,也可以添加自定义nttInclude the CountTimeProgressView widget in your layout. And you can customize it like this. 32 | 33 | ```xml 34 | 54 | ``` 55 | ### Step 3 56 | 57 | 你可以在代码中改变 CountTimeProgress 属性,并添加回调 『addOnEndListener』。例如: 58 | 59 | by Java: 60 | ```java 61 | countTimeProgressView.setBackgroundColorCenter(Color.WHITE); 62 | countTimeProgressView.setBorderWidth(3); 63 | countTimeProgressView.setBorderBottomColor(Color.GRAY); 64 | countTimeProgressView.setBorderDrawColor(Color.RED); 65 | countTimeProgressView.setMarkBallColor(Color.GREEN); 66 | 67 | countTimeProgressView.setMarkBallFlag(true); 68 | countTimeProgressView.setMarkBallWidth(4); 69 | countTimeProgressView.setTitleCenterText(""); 70 | countTimeProgressView.setTitleCenterTextSize(16); 71 | countTimeProgressView.setTitleCenterTextColor(Color.BLACK); 72 | 73 | countTimeProgressView.setCountTime(5000L); 74 | countTimeProgressView.setStartAngle(0); 75 | countTimeProgressView.setTextStyle(CountTimeProgressView.TextStyle.INSTANCE.getCLOCK()); 76 | countTimeProgressView.setClockwise(true); 77 | 78 | countTimeProgressView.addOnEndListener(new CountTimeProgressView.OnEndListener() { 79 | @Override 80 | public void onAnimationEnd() { 81 | Toast.makeText(SimpleActivity.this, "时间到", Toast.LENGTH_SHORT).show(); 82 | } 83 | @Override 84 | public void onClick(long overageTime) { 85 | if (countTimeProgressView.isRunning()) { 86 | countTimeProgressView.cancelCountTimeAnimation(); 87 | } else { 88 | countTimeProgressView.startCountTimeAnimation(); 89 | } 90 | } 91 | }); 92 | 93 | countTimeProgressView.startCountTimeAnimation(); 94 | ``` 95 | 96 | by Kotlin: 97 | ``` 98 | with(countTimeProgressView){ 99 | startAngle = 0f 100 | countTime = 6000L 101 | textStyle = CountTimeProgressView.TextStyle.SECOND 102 | borderWidth = 4f 103 | borderBottomColor = Color.GRAY 104 | borderDrawColor = Color.RED 105 | backgroundColorCenter = Color.WHITE 106 | markBallFlag = true 107 | markBallWidth = 6f 108 | markBallColor = Color.GREEN 109 | titleCenterText = "跳过(%s)s" 110 | titleCenterTextColor = Color.BLACK 111 | titleCenterTextSize = 16f 112 | addOnEndListener(object : CountTimeProgressView.OnEndListener { 113 | override fun onAnimationEnd() { 114 | Toast.makeText(this@SimpleActivity, "时间到", Toast.LENGTH_SHORT).show() 115 | } 116 | 117 | override fun onClick(overageTime: Long) { 118 | if (countTimeProgressView.isRunning) { 119 | countTimeProgressView.cancelCountTimeAnimation() 120 | Log.e("overageTime", "overageTime = " + overageTime) 121 | } else { 122 | countTimeProgressView.startCountTimeAnimation() 123 | } 124 | } 125 | }) 126 | } 127 | countTimeProgressView.startCountTimeAnimation() 128 | ``` 129 | 130 | ## 自定义属性说明 131 | 132 | 可自由灵活定制 :) 133 | 134 | | 名称 | 格式 | 说明 | 135 | | :---: | :---: | :---: | 136 | | backgroundColorCenter | color | 圆环背景颜色,默认为 #00BCD4 137 | | borderWidth | dimension | 圆形轨迹边框宽度, 默认为 3dp 138 | | borderDrawColor | color | Draw color,默认为 #4dd0e1 139 | | borderBottomColor | color | Bottom Color,默认为 #D32F2F 140 | | markBallWidth | dimension | Ball width , 默认为 6dp 141 | | markBallColor | color | Ball Color , 默认为 #536DFE 142 | | markBallFlag | boolean | Ball isDisplay,默认为 true 143 | | startAngle | float | Ball start angle , 默认为 0f 144 | | clockwise | boolean | Clockwise or Counter-clockwise , 默认为 true 145 | | countTime | integer | Count time , 默认为 5 146 | | textStyle | enum | 中心文字显示风格 , 默认为 『jump』,其他可选项为: 『second』,『clock』,『none』 147 | | titleCenterText | string | 中心文字显示内容 , 仅仅 TextStyle 当『 jump 』显示| 148 | | titleCenterColor | color | 中心文字显示内容 , 默认为 #FFFFFF. 149 | | titleCenterSize | dimension | 中心文字字体大小 , 默认为 16sp. 150 | 151 | ## Change Log 152 | 153 | 1.1.3(2017-11-11) 154 | RuBuild Code by Kotlin 155 | 156 | 1.1.1(2017-3-27) 157 | update Stop running when exiting 158 | 159 | 1.1.0 (2017-2-7) 160 | update anim colckWise 161 | 162 | 1.0.0 (2016-12-20) 163 | First commit 164 | 165 | ## Demo 166 | [Download][3] 167 | 168 | 169 | ## Thanks 170 | 171 | Inspired by 172 | 173 | [tangqi92][4] created by [WaveLoadingView][5] 174 | 175 | 176 | [1]: https://github.com/sfyc23/CountTimeProgressView/blob/master/screenshot/ctpv-video-to-gif.gif 177 | [2]: https://github.com/sfyc23/CountTimeProgressView/blob/master/library/src/main/java/com/sfyc/ctpv/CountTimeProgressView.kt 178 | [3]: http://fir.im/ctpv58 179 | [4]: https://github.com/tangqi92 180 | [5]: https://github.com/tangqi92/WaveLoadingView -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![twitter](https://img.shields.io/badge/twitter-sfyc23-blue.svg)](https://twitter.com/sfyc23) 2 | [![微博](https://img.shields.io/badge/%E5%BE%AE%E5%8D%9A-sfyc23-blue.svg)](https://weibo.com/sfyc23) 3 | [![API](https://img.shields.io/badge/API-%2B14-green.svg)](https://android-arsenal.com/api?level=14) 4 | [![Maven Central](https://img.shields.io/badge/Maven%20Central-1.1.3-green.svg)]() 5 | [![License](https://img.shields.io/badge/License-Apache%202.0-red.svg)]() 6 | # CountTimeProgressView 7 | 8 | **CountTimeProgressView** - An Android library that provides a count time circular progress view effect. 9 | 10 | [中文版][1] 11 | 12 | ## Sample 13 | ![页面动图][2] 14 | 15 | 16 | ## Usage 17 | 18 | **For a working implementation of this project see the [CountTimeProgressView.kt][3] .** 19 | 20 | 21 | 22 | ### step 1 23 | 24 | Include the library as a local library project or add the dependency in your build.gradle. 25 | 26 | ```groovy 27 | dependencies { 28 | compile 'com.sfyc.ctpv:library:1.1.3' 29 | } 30 | ``` 31 | 32 | ### Step 2 33 | 34 | Include the CountTimeProgressView widget in your layout. And you can customize it like this. 35 | 36 | ```xml 37 | 57 | ``` 58 | ### Step 3 59 | 60 | You can write some animation codes to the callbacks such as addOnEndListener, etc in your Activity. 61 | in Java: 62 | ```java 63 | countTimeProgressView.setBackgroundColorCenter(Color.WHITE); 64 | countTimeProgressView.setBorderWidth(3); 65 | countTimeProgressView.setBorderBottomColor(Color.GRAY); 66 | countTimeProgressView.setBorderDrawColor(Color.RED); 67 | countTimeProgressView.setMarkBallColor(Color.GREEN); 68 | 69 | countTimeProgressView.setMarkBallFlag(true); 70 | countTimeProgressView.setMarkBallWidth(4); 71 | countTimeProgressView.setTitleCenterText(""); 72 | countTimeProgressView.setTitleCenterTextSize(16); 73 | countTimeProgressView.setTitleCenterTextColor(Color.BLACK); 74 | 75 | countTimeProgressView.setCountTime(5000L); 76 | countTimeProgressView.setStartAngle(0); 77 | countTimeProgressView.setTextStyle(CountTimeProgressView.TextStyle.INSTANCE.getCLOCK()); 78 | countTimeProgressView.setClockwise(true); 79 | 80 | countTimeProgressView.addOnEndListener(new CountTimeProgressView.OnEndListener() { 81 | @Override 82 | public void onAnimationEnd() { 83 | Toast.makeText(SimpleActivity.this, "时间到", Toast.LENGTH_SHORT).show(); 84 | } 85 | @Override 86 | public void onClick(long overageTime) { 87 | if (countTimeProgressView.isRunning()) { 88 | countTimeProgressView.cancelCountTimeAnimation(); 89 | } else { 90 | countTimeProgressView.startCountTimeAnimation(); 91 | } 92 | } 93 | }); 94 | 95 | countTimeProgressView.startCountTimeAnimation(); 96 | ``` 97 | 98 | in Kotlin: 99 | ``` 100 | with(countTimeProgressView){ 101 | startAngle = 0f 102 | countTime = 6000L 103 | textStyle = CountTimeProgressView.TextStyle.SECOND 104 | borderWidth = 4f 105 | borderBottomColor = Color.GRAY 106 | borderDrawColor = Color.RED 107 | backgroundColorCenter = Color.WHITE 108 | markBallFlag = true 109 | markBallWidth = 6f 110 | markBallColor = Color.GREEN 111 | titleCenterText = "jump(%s)s" 112 | titleCenterTextColor = Color.BLACK 113 | titleCenterTextSize = 16f 114 | addOnEndListener(object : CountTimeProgressView.OnEndListener { 115 | override fun onAnimationEnd() { 116 | Toast.makeText(this@SimpleActivity, "时间到", Toast.LENGTH_SHORT).show() 117 | } 118 | 119 | override fun onClick(overageTime: Long) { 120 | if (countTimeProgressView.isRunning) { 121 | countTimeProgressView.cancelCountTimeAnimation() 122 | Log.e("overageTime", "overageTime = " + overageTime) 123 | } else { 124 | countTimeProgressView.startCountTimeAnimation() 125 | } 126 | } 127 | }) 128 | } 129 | countTimeProgressView.startCountTimeAnimation() 130 | ``` 131 | 132 | ## Customization 133 | 134 | Please feel free to :) 135 | 136 | |name|format|description| 137 | |:---:|:---:|:---:| 138 | | backgroundColorCenter | color | Background_Color, default is #00BCD4 139 | | borderWidth | dimension | Circular locus border width, default is 3dp 140 | | borderDrawColor | color | Draw color,dafault is #4dd0e1 141 | | borderBottomColor | color | Bottom Color,dafault is #D32F2F 142 | | markBallWidth | dimension | Ball width , default is 6dp 143 | | markBallColor | color | Ball Color , default is #536DFE 144 | | markBallFlag | boolean | Ball isDisplay,default is true 145 | | startAngle | float | Ball start angle , default is 0f 146 | | clockwise | boolean | Clockwise or Counter-clockwise , default is true 147 | | countTime | integer | Count time , default is 0 148 | | textStyle | enum | Center text style , default is jump,Other options are available "second,clock,none" 149 | | titleCenterText | string | Center text , displayed only when textStyle is "jump" 150 | | titleCenterColor | color | Center text color , default is #FFFFFF. 151 | | titleCenterSize | dimension | Center text size , default is 16sp. 152 | 153 | ## Change Log 154 | 155 | 1.1.3(2017-11-11) 156 | RuBuild Code by Kotlin 157 | 158 | 1.1.1(2017-3-27) 159 | update Stop running when exiting 160 | 161 | 1.1.0 (2017-2-7) 162 | update anim colckWise 163 | 164 | 1.0.0 (2016-12-20) 165 | First commit 166 | 167 | ## Demo 168 | [Download][4] 169 | 170 | 171 | ## Thanks 172 | 173 | Inspired by 174 | 175 | [tangqi92][5] created by [WaveLoadingView][6] 176 | 177 | 178 | [1]: https://github.com/sfyc23/CountTimeProgressView/blob/master/README-ZH.md 179 | [2]: https://github.com/sfyc23/CountTimeProgressView/blob/master/screenshot/ctpv-video-to-gif.gif 180 | [3]: https://github.com/sfyc23/CountTimeProgressView/blob/master/library/src/main/java/com/sfyc/ctpv/CountTimeProgressView.kt 181 | [4]: http://fir.im/ctpv58 182 | [5]: https://github.com/tangqi92 183 | [6]: https://github.com/tangqi92/WaveLoadingView -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | apply plugin: 'kotlin-android' 3 | android { 4 | compileSdkVersion 26 5 | buildToolsVersion "26.0.2" 6 | defaultConfig { 7 | applicationId "com.sfyc.simple" 8 | minSdkVersion 14 9 | targetSdkVersion 26 10 | versionCode 2 11 | versionName "1.1.0" 12 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | implementation fileTree(dir: 'libs', include: ['*.jar']) 24 | implementation project(':library') 25 | androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { 26 | exclude group: 'com.android.support', module: 'support-annotations' 27 | }) 28 | implementation 'com.android.support:appcompat-v7:26.1.0' 29 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" 30 | 31 | implementation 'com.larswerkman:lobsterpicker:1.0.0' 32 | implementation 'org.adw.library:discrete-seekbar:1.0.1' 33 | implementation 'com.kyleduo.switchbutton:library:1.4.4' 34 | 35 | 36 | testImplementation 'junit:junit:4.12' 37 | // compile 'com.sfyc.ctpv:library:1.1.1' 38 | 39 | } 40 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in E:\android\SDK/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/sfyc/simple/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.sfyc.simple; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumentation test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("com.sfyc.simple", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/main/java/com/sfyc/simple/SimpleActivity.kt: -------------------------------------------------------------------------------- 1 | package com.sfyc.simple 2 | 3 | import android.graphics.Color 4 | import android.os.Bundle 5 | import android.support.annotation.ColorInt 6 | import android.support.v7.app.AlertDialog 7 | import android.support.v7.app.AppCompatActivity 8 | import android.util.Log 9 | import android.view.View 10 | import android.widget.Toast 11 | import com.kyleduo.switchbutton.SwitchButton 12 | import com.larswerkman.lobsterpicker.OnColorListener 13 | import com.larswerkman.lobsterpicker.sliders.LobsterShadeSlider 14 | import com.sfyc.ctpv.CountTimeProgressView 15 | import org.adw.library.widgets.discreteseekbar.DiscreteSeekBar 16 | 17 | 18 | /** 19 | * Author :leilei on 2016/12/20 0115. 20 | */ 21 | class SimpleActivity : AppCompatActivity() { 22 | 23 | private lateinit var countTimeProgressView: CountTimeProgressView 24 | private var checkedItem = 0 25 | 26 | override fun onCreate(savedInstanceState: Bundle?) { 27 | super.onCreate(savedInstanceState) 28 | setContentView(R.layout.activity_simple) 29 | countTimeProgressView = findViewById(R.id.countTimeProgressView) 30 | findViewById(R.id.tv_countTime_style).setOnClickListener { 31 | AlertDialog.Builder(this@SimpleActivity).setTitle("CountTime Style").setSingleChoiceItems( 32 | arrayOf("JUMP", "SECOND", "CLOCK", "NONE"), checkedItem 33 | ) { dialog, which -> 34 | checkedItem = which 35 | when (which) { 36 | 0 -> { 37 | countTimeProgressView.textStyle = CountTimeProgressView.TextStyle.JUMP 38 | countTimeProgressView.titleCenterText = "跳过" 39 | countTimeProgressView.startCountTimeAnimation() 40 | dialog.dismiss() 41 | } 42 | 1 -> { 43 | countTimeProgressView.textStyle = CountTimeProgressView.TextStyle.SECOND 44 | countTimeProgressView.titleCenterText = "跳过(%s)s" 45 | countTimeProgressView.startCountTimeAnimation() 46 | dialog.dismiss() 47 | } 48 | 2 -> { 49 | countTimeProgressView.textStyle = CountTimeProgressView.TextStyle.CLOCK 50 | countTimeProgressView.startCountTimeAnimation() 51 | dialog.dismiss() 52 | } 53 | 3 -> { 54 | countTimeProgressView.textStyle = CountTimeProgressView.TextStyle.NONE 55 | countTimeProgressView.startCountTimeAnimation() 56 | dialog.dismiss() 57 | } 58 | else -> dialog.dismiss() 59 | } 60 | }.show() 61 | } 62 | // start_angle 63 | findViewById(R.id.seek_bar_start_angle).setOnProgressChangeListener(object : DiscreteSeekBar.OnProgressChangeListener { 64 | override fun onProgressChanged(seekBar: DiscreteSeekBar, value: Int, fromUser: Boolean) { 65 | 66 | } 67 | 68 | override fun onStartTrackingTouch(seekBar: DiscreteSeekBar) {} 69 | 70 | override fun onStopTrackingTouch(seekBar: DiscreteSeekBar) { 71 | countTimeProgressView.startAngle = (seekBar.progress).toFloat() 72 | countTimeProgressView.startCountTimeAnimation() 73 | } 74 | }) 75 | 76 | // seek_bar_countTime 77 | findViewById(R.id.seek_bar_countTime).setOnProgressChangeListener(object : DiscreteSeekBar.OnProgressChangeListener { 78 | override fun onProgressChanged(seekBar: DiscreteSeekBar, value: Int, fromUser: Boolean) { 79 | 80 | } 81 | 82 | override fun onStartTrackingTouch(seekBar: DiscreteSeekBar) {} 83 | 84 | override fun onStopTrackingTouch(seekBar: DiscreteSeekBar) { 85 | countTimeProgressView.countTime = seekBar.progress * 1000L 86 | countTimeProgressView.startCountTimeAnimation() 87 | } 88 | }) 89 | // Border 90 | findViewById(R.id.seekbar_border_width).setOnProgressChangeListener(object : DiscreteSeekBar.OnProgressChangeListener { 91 | override fun onProgressChanged(seekBar: DiscreteSeekBar, value: Int, fromUser: Boolean) { 92 | 93 | } 94 | override fun onStartTrackingTouch(seekBar: DiscreteSeekBar) {} 95 | 96 | override fun onStopTrackingTouch(seekBar: DiscreteSeekBar) { 97 | 98 | countTimeProgressView.borderWidth = seekBar.progress.toFloat() 99 | } 100 | }) 101 | 102 | // setBorderBottomColor 103 | findViewById(R.id.shadeslider_bottom_color).addOnColorListener(object : OnColorListener { 104 | override fun onColorChanged(@ColorInt color: Int) { 105 | countTimeProgressView.borderBottomColor = color 106 | } 107 | 108 | override fun onColorSelected(@ColorInt color: Int) {} 109 | }) 110 | 111 | //setBorderDrawColor 112 | findViewById(R.id.shadeslider_draw_color).addOnColorListener(object : OnColorListener { 113 | override fun onColorChanged(@ColorInt color: Int) { 114 | countTimeProgressView.borderDrawColor = color 115 | } 116 | 117 | override fun onColorSelected(@ColorInt color: Int) {} 118 | }) 119 | //setBorderDrawColor 120 | findViewById(R.id.shadeslider_bg_color).addOnColorListener(object : OnColorListener { 121 | override fun onColorChanged(@ColorInt color: Int) { 122 | countTimeProgressView.setBackgroundColor(color) 123 | } 124 | 125 | override fun onColorSelected(@ColorInt color: Int) {} 126 | }) 127 | 128 | findViewById(R.id.seekbar_ball_width).setOnProgressChangeListener(object : DiscreteSeekBar.OnProgressChangeListener { 129 | override fun onProgressChanged(seekBar: DiscreteSeekBar, value: Int, fromUser: Boolean) { 130 | 131 | } 132 | 133 | override fun onStartTrackingTouch(seekBar: DiscreteSeekBar) {} 134 | 135 | override fun onStopTrackingTouch(seekBar: DiscreteSeekBar) { 136 | countTimeProgressView.markBallWidth = seekBar.progress.toFloat() 137 | } 138 | }) 139 | // setBorderBottomColor 140 | findViewById(R.id.shadeslider_ball_color).addOnColorListener(object : OnColorListener { 141 | override fun onColorChanged(@ColorInt color: Int) { 142 | countTimeProgressView.markBallColor = color 143 | } 144 | 145 | override fun onColorSelected(@ColorInt color: Int) {} 146 | }) 147 | 148 | findViewById(R.id.sb_ball_flag).apply { 149 | isChecked = true 150 | setOnCheckedChangeListener { _, isChecked -> 151 | countTimeProgressView.markBallFlag = isChecked 152 | } 153 | } 154 | 155 | 156 | findViewById(R.id.sb_clockwise).apply { 157 | isChecked = true 158 | setOnCheckedChangeListener { _, isChecked -> 159 | countTimeProgressView.clockwise = isChecked 160 | countTimeProgressView.startCountTimeAnimation() 161 | } 162 | } 163 | 164 | 165 | with(countTimeProgressView){ 166 | startAngle = 0f 167 | countTime = 6000L 168 | textStyle = CountTimeProgressView.TextStyle.SECOND 169 | borderWidth = 4f 170 | borderBottomColor = Color.GRAY 171 | borderDrawColor = Color.RED 172 | backgroundColorCenter = Color.WHITE 173 | markBallFlag = true 174 | markBallWidth = 6f 175 | markBallColor = Color.GREEN 176 | titleCenterText = "跳过(%s)s" 177 | titleCenterTextColor = Color.BLACK 178 | titleCenterTextSize = 16f 179 | addOnEndListener(object : CountTimeProgressView.OnEndListener { 180 | override fun onAnimationEnd() { 181 | Toast.makeText(this@SimpleActivity, "时间到", Toast.LENGTH_SHORT).show() 182 | } 183 | 184 | override fun onClick(overageTime: Long) { 185 | if (countTimeProgressView.isRunning) { 186 | countTimeProgressView.cancelCountTimeAnimation() 187 | Log.e("overageTime", "overageTime = " + overageTime) 188 | } else { 189 | countTimeProgressView.startCountTimeAnimation() 190 | } 191 | } 192 | }) 193 | startCountTimeAnimation() 194 | } 195 | 196 | 197 | } 198 | } 199 | -------------------------------------------------------------------------------- /app/src/main/java/com/sfyc/simple/SplashActivity.java: -------------------------------------------------------------------------------- 1 | package com.sfyc.simple; 2 | 3 | import android.content.Intent; 4 | import android.os.Bundle; 5 | import android.support.v7.app.AppCompatActivity; 6 | import android.util.Log; 7 | import android.view.Window; 8 | import android.view.WindowManager; 9 | 10 | import com.sfyc.ctpv.CountTimeProgressView; 11 | 12 | 13 | public class SplashActivity extends AppCompatActivity { 14 | 15 | private CountTimeProgressView countTimeProgressView; 16 | 17 | @Override 18 | protected void onCreate(Bundle savedInstanceState) { 19 | super.onCreate(savedInstanceState); 20 | requestWindowFeature(Window.FEATURE_NO_TITLE); 21 | getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 22 | setContentView(R.layout.activity_splash); 23 | countTimeProgressView = (CountTimeProgressView) findViewById(R.id.countTimeProgressView1); 24 | countTimeProgressView.addOnEndListener(new CountTimeProgressView.OnEndListener() { 25 | @Override 26 | public void onAnimationEnd() { 27 | Log.e("Main", "onAnimationEnd"); 28 | startActivity(new Intent(SplashActivity.this, SimpleActivity.class)); 29 | finish(); 30 | } 31 | @Override 32 | public void onClick(long overageTime) { 33 | countTimeProgressView.cancelCountTimeAnimation(); 34 | startActivity(new Intent(SplashActivity.this, SimpleActivity.class)); 35 | finish(); 36 | } 37 | 38 | }); 39 | 40 | /* countTimeProgressView.setBackgroundColorCenter(Color.WHITE); 41 | countTimeProgressView.setBorderWidth(3); 42 | countTimeProgressView.setBorderBottomColor(Color.GRAY); 43 | countTimeProgressView.setBorderDrawColor(Color.RED); 44 | countTimeProgressView.setMarkBallColor(Color.GREEN); 45 | 46 | countTimeProgressView.setMarkBallFlag(true); 47 | countTimeProgressView.setMarkBallWidth(4); 48 | countTimeProgressView.setTitleCenterText(""); 49 | countTimeProgressView.setTitleCenterTextSize(16); 50 | countTimeProgressView.setTitleCenterTextColor(Color.BLACK); 51 | 52 | countTimeProgressView.setCountTime(5000L); 53 | countTimeProgressView.setStartAngle(0); 54 | countTimeProgressView.setTextStyle(CountTimeProgressView.TextStyle.INSTANCE.getCLOCK()); 55 | countTimeProgressView.setClockwise(true);*/ 56 | 57 | countTimeProgressView.startCountTimeAnimation(); 58 | // gradlew install 59 | // gradlew bintrayUpload 60 | } 61 | 62 | @Override 63 | protected void onDestroy() { 64 | super.onDestroy(); 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_simple.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 14 | 15 | 20 | 21 | 22 | 23 | 26 | 27 | 35 | 36 | 37 | 38 | 39 | 42 | 43 | 53 | 54 | 55 | 56 | 57 | 60 | 61 | 71 | 72 | 74 | 75 | 78 | 79 | 87 | 88 | 89 | 91 | 92 | 95 | 96 | 104 | 105 | 106 | 107 | 108 | 111 | 112 | 121 | 122 | 123 | 124 | 125 | 128 | 129 | 134 | 135 | 136 | 137 | 138 | 141 | 142 | 151 | 152 | 153 | 154 | 155 | 158 | 159 | 164 | 165 | 166 | 167 | 168 | 171 | 172 | 177 | 178 | 179 | 180 | 181 | 184 | 185 | 190 | 191 | 192 | 193 | 194 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 15 | 16 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfyc23/CountTimeProgressView/c11911209fc1cbab0af01c2471259d46f5e51b34/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfyc23/CountTimeProgressView/c11911209fc1cbab0af01c2471259d46f5e51b34/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfyc23/CountTimeProgressView/c11911209fc1cbab0af01c2471259d46f5e51b34/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfyc23/CountTimeProgressView/c11911209fc1cbab0af01c2471259d46f5e51b34/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfyc23/CountTimeProgressView/c11911209fc1cbab0af01c2471259d46f5e51b34/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/peaty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfyc23/CountTimeProgressView/c11911209fc1cbab0af01c2471259d46f5e51b34/app/src/main/res/mipmap-xxxhdpi/peaty.jpg -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CountTimeProgressView 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 | 25 | 31 | 32 | 38 | 39 | -------------------------------------------------------------------------------- /app/src/test/java/com/sfyc/simple/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.sfyc.simple; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext.kotlin_version = '1.1.51' 5 | repositories { 6 | google() 7 | jcenter() 8 | } 9 | dependencies { 10 | classpath 'com.android.tools.build:gradle:3.0.0' 11 | classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' 12 | classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0' 13 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 14 | // NOTE: Do not place your application dependencies here; they belong 15 | // in the individual module build.gradle files 16 | } 17 | 18 | } 19 | 20 | allprojects { 21 | repositories { 22 | google() 23 | jcenter() 24 | } 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /download/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfyc23/CountTimeProgressView/c11911209fc1cbab0af01c2471259d46f5e51b34/download/app-debug.apk -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfyc23/CountTimeProgressView/c11911209fc1cbab0af01c2471259d46f5e51b34/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Nov 08 20:19:31 CST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip 7 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # Attempt to set APP_HOME 46 | # Resolve links: $0 may be a link 47 | PRG="$0" 48 | # Need this for relative symlinks. 49 | while [ -h "$PRG" ] ; do 50 | ls=`ls -ld "$PRG"` 51 | link=`expr "$ls" : '.*-> \(.*\)$'` 52 | if expr "$link" : '/.*' > /dev/null; then 53 | PRG="$link" 54 | else 55 | PRG=`dirname "$PRG"`"/$link" 56 | fi 57 | done 58 | SAVED="`pwd`" 59 | cd "`dirname \"$PRG\"`/" >/dev/null 60 | APP_HOME="`pwd -P`" 61 | cd "$SAVED" >/dev/null 62 | 63 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 64 | 65 | # Determine the Java command to use to start the JVM. 66 | if [ -n "$JAVA_HOME" ] ; then 67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 68 | # IBM's JDK on AIX uses strange locations for the executables 69 | JAVACMD="$JAVA_HOME/jre/sh/java" 70 | else 71 | JAVACMD="$JAVA_HOME/bin/java" 72 | fi 73 | if [ ! -x "$JAVACMD" ] ; then 74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 75 | 76 | Please set the JAVA_HOME variable in your environment to match the 77 | location of your Java installation." 78 | fi 79 | else 80 | JAVACMD="java" 81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 82 | 83 | Please set the JAVA_HOME variable in your environment to match the 84 | location of your Java installation." 85 | fi 86 | 87 | # Increase the maximum file descriptors if we can. 88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 89 | MAX_FD_LIMIT=`ulimit -H -n` 90 | if [ $? -eq 0 ] ; then 91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 92 | MAX_FD="$MAX_FD_LIMIT" 93 | fi 94 | ulimit -n $MAX_FD 95 | if [ $? -ne 0 ] ; then 96 | warn "Could not set maximum file descriptor limit: $MAX_FD" 97 | fi 98 | else 99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 100 | fi 101 | fi 102 | 103 | # For Darwin, add options to specify how the application appears in the dock 104 | if $darwin; then 105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 106 | fi 107 | 108 | # For Cygwin, switch paths to Windows format before running java 109 | if $cygwin ; then 110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 112 | JAVACMD=`cygpath --unix "$JAVACMD"` 113 | 114 | # We build the pattern for arguments to be converted via cygpath 115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 116 | SEP="" 117 | for dir in $ROOTDIRSRAW ; do 118 | ROOTDIRS="$ROOTDIRS$SEP$dir" 119 | SEP="|" 120 | done 121 | OURCYGPATTERN="(^($ROOTDIRS))" 122 | # Add a user-defined pattern to the cygpath arguments 123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 125 | fi 126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 127 | i=0 128 | for arg in "$@" ; do 129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 131 | 132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 134 | else 135 | eval `echo args$i`="\"$arg\"" 136 | fi 137 | i=$((i+1)) 138 | done 139 | case $i in 140 | (0) set -- ;; 141 | (1) set -- "$args0" ;; 142 | (2) set -- "$args0" "$args1" ;; 143 | (3) set -- "$args0" "$args1" "$args2" ;; 144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 150 | esac 151 | fi 152 | 153 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 154 | function splitJvmOpts() { 155 | JVM_OPTS=("$@") 156 | } 157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 158 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 159 | 160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 161 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | apply plugin: 'com.github.dcendents.android-maven' 3 | apply plugin: 'com.jfrog.bintray' 4 | apply plugin: 'kotlin-android' 5 | 6 | 7 | // This is the library version used when deploying the artifact. 8 | version = "1.1.3" 9 | group = "com.sfyc.ctpv" 10 | 11 | android { 12 | compileSdkVersion 26 13 | buildToolsVersion "26.0.2" 14 | 15 | defaultConfig { 16 | minSdkVersion 14 17 | targetSdkVersion 26 18 | versionCode 4 19 | versionName "1.1.3" 20 | 21 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 22 | 23 | } 24 | buildTypes { 25 | release { 26 | minifyEnabled false 27 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 28 | } 29 | } 30 | } 31 | 32 | 33 | dependencies { 34 | implementation fileTree(dir: 'libs', include: ['*.jar']) 35 | androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { 36 | exclude group: 'com.android.support', module: 'support-annotations' 37 | }) 38 | implementation 'com.android.support:appcompat-v7:26.1.0' 39 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" 40 | testImplementation 'junit:junit:4.12' 41 | } 42 | 43 | android { 44 | lintOptions { 45 | abortOnError false 46 | } 47 | } 48 | 49 | def siteUrl = 'https://github.com/sfyc23/CountTimeProgressView' // 项目的主页 50 | def gitUrl = 'https://github.com/sfyc23/CountTimeProgressView.git' // Git仓库的url 51 | // Maven Group ID for the artifact,一般填你唯一的包名 52 | install { 53 | repositories.mavenInstaller { 54 | // This generates POM.xml with proper parameters 55 | pom { 56 | project { 57 | packaging 'aar' 58 | // Add your description here 59 | name 'Android CountTime ProgressView' 60 | url siteUrl 61 | // Set your license 62 | licenses { 63 | license { 64 | name 'The Apache Software License, Version 2.0' 65 | url 'http://www.apache.org/licenses/LICENSE-2.0.txt' 66 | } 67 | } 68 | developers { 69 | developer { 70 | id 'sfyc23' //填写的一些基本信息 71 | name 'sfyc23' 72 | email 'sfyc23@gmail.com' 73 | } 74 | } 75 | scm { 76 | connection gitUrl 77 | developerConnection gitUrl 78 | url siteUrl 79 | } 80 | } 81 | } 82 | } 83 | } 84 | task sourcesJar(type: Jar) { 85 | from android.sourceSets.main.java.srcDirs 86 | classifier = 'sources' 87 | } 88 | task javadoc(type: Javadoc) { 89 | source = android.sourceSets.main.java.srcDirs 90 | classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) 91 | } 92 | task javadocJar(type: Jar, dependsOn: javadoc) { 93 | classifier = 'javadoc' 94 | from javadoc.destinationDir 95 | } 96 | artifacts { 97 | archives javadocJar 98 | archives sourcesJar 99 | } 100 | Properties properties = new Properties() 101 | properties.load(project.rootProject.file('local.properties').newDataInputStream()) 102 | bintray { 103 | user = properties.getProperty("bintray.user") 104 | key = properties.getProperty("bintray.apikey") 105 | configurations = ['archives'] 106 | pkg { 107 | userOrg = "sfyc58" 108 | repo = "maven" 109 | name = "CountTimeProgressView" //发布到JCenter上的项目名字 110 | websiteUrl = siteUrl 111 | vcsUrl = gitUrl 112 | licenses = ["Apache-2.0"] 113 | publish = true 114 | } 115 | } 116 | javadoc { //jav doc采用utf-8编码否则会报“GBK的不可映射字符”错误 117 | options{ 118 | encoding "UTF-8" 119 | charSet 'UTF-8' 120 | } 121 | } -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in E:\android\SDK/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /library/src/androidTest/java/com/sfyc/ctpv/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.sfyc.ctpv; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumentation test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("com.sfyc.ctpv.test", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /library/src/main/java/com/sfyc/ctpv/CountTimeProgressView.kt: -------------------------------------------------------------------------------- 1 | package com.sfyc.ctpv 2 | 3 | /** 4 | * Author :leilei on 2016/12/19 1512. 5 | */ 6 | import android.animation.Animator 7 | import android.animation.ValueAnimator 8 | import android.content.Context 9 | import android.graphics.* 10 | import android.text.TextUtils 11 | import android.util.AttributeSet 12 | import android.util.Log 13 | import android.util.TypedValue 14 | import android.view.View 15 | 16 | 17 | class CountTimeProgressView 18 | @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0) : 19 | View(context, attrs, defStyleAttr), View.OnClickListener { 20 | 21 | private var mContext: Context 22 | 23 | /** 24 | * 小球的运动轨迹 25 | */ 26 | private var mBorderPath: Path = Path() 27 | private var mSportPath: Path = Path() 28 | 29 | //背景色画笔 30 | private var mBorderBottomPaint: Paint = Paint(Paint.ANTI_ALIAS_FLAG) 31 | //绘制画笔 32 | private var mBorderDrawPaint: Paint = Paint(Paint.ANTI_ALIAS_FLAG) 33 | //标记的小球 34 | private var mMarkBallPaint: Paint = Paint(Paint.ANTI_ALIAS_FLAG) 35 | //背景色 36 | private var mBgPaint: Paint = Paint() 37 | private var mTextPaint: Paint = Paint() 38 | 39 | private var mPathMeasure: PathMeasure = PathMeasure() 40 | private var mAnimator: ValueAnimator? = null 41 | 42 | private var mSportPos: FloatArray = FloatArray(2) 43 | private var mSportTan: FloatArray = FloatArray(2) 44 | 45 | private var mCurrentValue: Float = 0f 46 | private var mLength: Float = 0f 47 | 48 | 49 | //MarkBall parameter 50 | var markBallFlag = true 51 | set(value) { 52 | field = value 53 | calcRadius() 54 | } 55 | 56 | private var _markBallWidth = 0f 57 | var markBallWidth :Float 58 | set(value) { 59 | _markBallWidth = dpToPx(value) 60 | 61 | calcRadius() 62 | } 63 | get() = _markBallWidth 64 | 65 | var markBallColor = Color.RED 66 | set(value) { 67 | field = value 68 | mMarkBallPaint.color = value 69 | invalidate() 70 | } 71 | 72 | private var _borderWidth = 0f 73 | var borderWidth:Float 74 | set(value) { 75 | _borderWidth = dpToPx(value) 76 | mBorderBottomPaint.strokeWidth = _borderWidth 77 | mBorderDrawPaint.strokeWidth = _borderWidth 78 | calcRadius() 79 | } 80 | get() = _borderWidth 81 | 82 | var borderDrawColor = 0 83 | set(value) { 84 | field = value 85 | mBorderDrawPaint.color = value 86 | invalidate() 87 | } 88 | 89 | var borderBottomColor = 0 90 | set(value) { 91 | field = value 92 | mBorderBottomPaint.color = value 93 | invalidate() 94 | } 95 | 96 | var backgroundColorCenter: Int = 0 97 | set(value) { 98 | field = value 99 | mBgPaint.color = value 100 | invalidate() 101 | } 102 | 103 | //center text 104 | var titleCenterText: String? = "" 105 | set(value) { 106 | field = value 107 | invalidate() 108 | } 109 | 110 | private var _titleCenterTextSize = 0f 111 | var titleCenterTextSize: Float 112 | set(value) { 113 | _titleCenterTextSize = spToPx(value) 114 | // field = value 115 | mTextPaint.textSize = _titleCenterTextSize 116 | invalidate() 117 | } 118 | get() = _titleCenterTextSize 119 | 120 | var titleCenterTextColor = 0 121 | set(value) { 122 | field = value 123 | mTextPaint.color = value 124 | invalidate() 125 | } 126 | 127 | var countTime = 0L 128 | set(value) { 129 | field = value 130 | initAnimation() 131 | } 132 | 133 | var startAngle :Float = 0f 134 | set(value) { 135 | field = value 136 | invalidate() 137 | } 138 | get() = (field + 270) % 360 139 | 140 | /** 141 | * true is clockwise(顺时针) 142 | */ 143 | var clockwise = true 144 | set(value) { 145 | field = value 146 | calcRadius() 147 | invalidate() 148 | } 149 | 150 | //view radius 151 | private var radius = 0f 152 | private var centerPaintX = 0f 153 | private var centerPaintY = 0f 154 | 155 | //动画取消标记 156 | private var onAnimationCancelMark = false 157 | 158 | private var displayText: String? = null 159 | private var mOnEndListener: OnEndListener? = null 160 | 161 | /** 162 | * 选择显示的类型 163 | * TextStyle.JUMP,固定文字(例如"跳过") 164 | * TextStyle.SECOND,倒计时(5s) 165 | * TextStyle.CLOCK,倒计时(时钟00:00:02) 166 | * 167 | */ 168 | var textStyle = TextStyle.JUMP 169 | 170 | val isRunning: Boolean 171 | get() = mAnimator?.isRunning ?: false 172 | 173 | /** 174 | * @return Get the overage time 175 | */ 176 | private val overageTime: Long 177 | get() = (countTime * (1 - mCurrentValue)).toLong() 178 | 179 | init { 180 | mContext = context 181 | init(context, attrs, defStyleAttr) 182 | 183 | } 184 | 185 | private fun init(context: Context, attrs: AttributeSet?, defStyleAttr: Int) { 186 | 187 | // Load the styled attr and set their properties 188 | val attr = context.obtainStyledAttributes(attrs, R.styleable.CountTimeProgressView, defStyleAttr, 0) 189 | if (attr != null) { 190 | _titleCenterTextSize = attr.getDimension(R.styleable.CountTimeProgressView_titleCenterSize, spToPx(DEFAULT_TITLE_CENTER_SIZE)) 191 | titleCenterTextColor = attr.getColor(R.styleable.CountTimeProgressView_titleCenterColor, DEFAULT_TITLE_CENTER_COLOR) 192 | titleCenterText = attr.getString(R.styleable.CountTimeProgressView_titleCenterText) ?: DEFAULT_TITLE_CENTER_TEXT 193 | 194 | _borderWidth = attr.getDimension(R.styleable.CountTimeProgressView_borderWidth, dpToPx(DEFAULT_BORDER_WIDTH)) 195 | borderDrawColor = attr.getColor(R.styleable.CountTimeProgressView_borderDrawColor, DEFAULT_BORDER_DRAW_COLOR) 196 | borderBottomColor = attr.getColor(R.styleable.CountTimeProgressView_borderBottomColor, DEFAULT_BORDER_BOTTOM_COLOR) 197 | 198 | _markBallWidth = attr.getDimension(R.styleable.CountTimeProgressView_markBallWidth, dpToPx(DEFAULT_MARK_BALL_WIDTH)) 199 | markBallColor = attr.getColor(R.styleable.CountTimeProgressView_markBallColor, DEFAULT_MARK_BALL_COLOR) 200 | markBallFlag = attr.getBoolean(R.styleable.CountTimeProgressView_markBallFlag, DEFAULT_MARK_BALL_FLAG) 201 | 202 | backgroundColorCenter = attr.getColor(R.styleable.CountTimeProgressView_backgroundColorCenter, DEFAULT_BACKGROUND_COLOR_CENTER) 203 | 204 | //起始位置角度 205 | startAngle = attr.getFloat(R.styleable.CountTimeProgressView_startAngle, DEFAULT_START_ANGLE) 206 | clockwise = attr.getBoolean(R.styleable.CountTimeProgressView_clockwise, DEFAULT_CLOCKWISE) 207 | 208 | textStyle = attr.getInteger(R.styleable.CountTimeProgressView_textStyle, DEFAULT_TEXTSTYLE) 209 | countTime = attr.getInt(R.styleable.CountTimeProgressView_countTime, DEFAULT_COUNT_TIME.toInt()).toLong() 210 | attr.recycle() 211 | } else { 212 | _titleCenterTextSize = spToPx(DEFAULT_TITLE_CENTER_SIZE) 213 | titleCenterTextColor = DEFAULT_TITLE_CENTER_COLOR 214 | titleCenterText = DEFAULT_TITLE_CENTER_TEXT 215 | 216 | _borderWidth = dpToPx(DEFAULT_BORDER_WIDTH) 217 | borderDrawColor = DEFAULT_BORDER_DRAW_COLOR 218 | borderBottomColor = DEFAULT_BORDER_BOTTOM_COLOR 219 | 220 | _markBallWidth = dpToPx(DEFAULT_MARK_BALL_WIDTH) 221 | markBallColor = DEFAULT_MARK_BALL_COLOR 222 | markBallFlag = DEFAULT_MARK_BALL_FLAG 223 | 224 | backgroundColorCenter = DEFAULT_BACKGROUND_COLOR_CENTER 225 | 226 | //起始位置角度 227 | startAngle = DEFAULT_START_ANGLE 228 | clockwise = DEFAULT_CLOCKWISE 229 | 230 | textStyle = DEFAULT_TEXTSTYLE 231 | countTime = DEFAULT_COUNT_TIME 232 | } 233 | 234 | 235 | with(mBorderBottomPaint){ 236 | style = Paint.Style.STROKE 237 | strokeWidth = borderWidth 238 | color = borderBottomColor 239 | } 240 | 241 | with(mMarkBallPaint){ 242 | style = Paint.Style.FILL 243 | color = markBallColor 244 | } 245 | 246 | with(mBorderDrawPaint){ 247 | style = Paint.Style.STROKE 248 | strokeWidth = borderWidth 249 | color = borderDrawColor 250 | } 251 | 252 | with(mBgPaint){ 253 | style = Paint.Style.FILL 254 | isAntiAlias = true 255 | color = backgroundColorCenter 256 | } 257 | 258 | with(mTextPaint){ 259 | style = Paint.Style.FILL 260 | color = titleCenterTextColor 261 | isAntiAlias = true 262 | this.textSize = titleCenterTextSize 263 | } 264 | 265 | initAnimation() 266 | setOnClickListener(this) 267 | } 268 | 269 | private fun initAnimation() { 270 | mAnimator?.let { 271 | it.duration = countTime 272 | return 273 | } 274 | mAnimator = ValueAnimator.ofFloat(0f, 1f).apply { 275 | duration = countTime 276 | addUpdateListener { 277 | if(it.animatedValue is Float){ 278 | mCurrentValue = it.animatedValue as Float 279 | } 280 | invalidate() 281 | } 282 | 283 | addListener(object : Animator.AnimatorListener { 284 | 285 | override fun onAnimationStart(animation: Animator) { 286 | onAnimationCancelMark = false 287 | } 288 | override fun onAnimationEnd(animation: Animator) { 289 | 290 | if (mOnEndListener != null && !onAnimationCancelMark) { 291 | Log.e("CountTimeProgressView", "AnimationOver") 292 | mOnEndListener?.onAnimationEnd() 293 | } 294 | } 295 | override fun onAnimationCancel(animation: Animator) { 296 | onAnimationCancelMark = true 297 | } 298 | 299 | override fun onAnimationRepeat(animation: Animator) { 300 | 301 | } 302 | }) 303 | } 304 | 305 | } 306 | 307 | override fun onDetachedFromWindow() { 308 | super.onDetachedFromWindow() 309 | mOnEndListener = null 310 | if (isRunning) { 311 | cancelCountTimeAnimation() 312 | } 313 | } 314 | 315 | fun calcRadius() { 316 | 317 | val availableWidth = width - paddingLeft - paddingRight 318 | val availableHeight = height - paddingTop - paddingBottom 319 | // val sideLength = Math.min(availableWidth, availableHeight) 320 | val centerLength = Math.min(availableWidth, availableHeight)/2f 321 | 322 | centerPaintX = paddingLeft + centerLength 323 | centerPaintY = paddingTop + centerLength 324 | 325 | if (markBallFlag) { 326 | radius = centerLength - Math.max(borderWidth, markBallWidth / 2f) 327 | } else { 328 | radius = centerLength - borderWidth 329 | } 330 | mBorderPath.reset() 331 | if (!clockwise) { 332 | mBorderPath.addCircle(0f, 0f, radius, Path.Direction.CCW) 333 | } else { 334 | mBorderPath.addCircle(0f, 0f, radius, Path.Direction.CW) 335 | } 336 | 337 | 338 | mPathMeasure.setPath(mBorderPath, false) 339 | mLength = mPathMeasure.length 340 | invalidate() 341 | } 342 | 343 | 344 | override fun onDraw(canvas: Canvas) { 345 | super.onDraw(canvas) 346 | 347 | canvas.save() 348 | canvas.translate(centerPaintX, centerPaintY) 349 | canvas.rotate(startAngle) 350 | 351 | 352 | //绘制背景色 353 | canvas.drawCircle(0f, 0f, radius, mBgPaint) 354 | canvas.drawPath(mBorderPath, mBorderBottomPaint) 355 | 356 | mSportPath.reset() 357 | mSportPath.lineTo(0f, 0f) 358 | 359 | //draw sport path。 360 | val stop = mLength * mCurrentValue 361 | mPathMeasure.getSegment(0f, stop, mSportPath, true) 362 | canvas.drawPath(mSportPath, mBorderDrawPaint) 363 | 364 | mPathMeasure.getPosTan(mCurrentValue * mLength, mSportPos, mSportTan) 365 | 366 | if (markBallFlag) { 367 | canvas.drawCircle(mSportPos[0], mSportPos[1], markBallWidth/2f, mMarkBallPaint) 368 | } 369 | 370 | when (textStyle) { 371 | TextStyle.SECOND -> 372 | if (titleCenterText!!.contains("%")) { 373 | displayText = String.format(titleCenterText!!, (countTime * (1 - mCurrentValue) / 1000).toInt()) 374 | } else { 375 | displayText = (countTime * (1 - mCurrentValue) / 1000).toInt().toString() + "s" 376 | } 377 | TextStyle.CLOCK -> displayText = ((countTime * (1 - mCurrentValue)).toLong()).clock 378 | TextStyle.JUMP -> if (!TextUtils.isEmpty(titleCenterText)) { 379 | displayText = titleCenterText 380 | } 381 | TextStyle.NONE -> displayText = "" 382 | else -> displayText = "" 383 | } 384 | if (!TextUtils.isEmpty(displayText)) { 385 | val middle = mTextPaint.measureText(displayText) 386 | canvas.rotate(-startAngle) 387 | canvas.drawText(displayText, 0 - middle / 2, 0 - (mTextPaint.descent() + mTextPaint.ascent()) / 2, mTextPaint) 388 | } 389 | 390 | canvas.restore() 391 | } 392 | 393 | override fun onSizeChanged(w: Int, h: Int, oldw: Int, oldh: Int) { 394 | super.onSizeChanged(w, h, oldw, oldh) 395 | calcRadius() 396 | } 397 | 398 | override fun setPadding(left: Int, top: Int, right: Int, bottom: Int) { 399 | super.setPadding(left, top, right, bottom) 400 | calcRadius() 401 | } 402 | 403 | override fun setPaddingRelative(start: Int, top: Int, end: Int, bottom: Int) { 404 | super.setPaddingRelative(start, top, end, bottom) 405 | calcRadius() 406 | } 407 | 408 | override fun onClick(view: View) { 409 | if (mOnEndListener != null) { 410 | mOnEndListener?.onClick(overageTime) 411 | } 412 | } 413 | /** 414 | * start countTime 415 | */ 416 | fun startCountTimeAnimation() { 417 | mAnimator?.let { 418 | it.cancel() 419 | it.start() 420 | } 421 | } 422 | 423 | /** 424 | * cancel countTime 425 | */ 426 | fun cancelCountTimeAnimation() { 427 | mAnimator?.cancel() 428 | } 429 | 430 | fun addOnEndListener(onEndListener: OnEndListener) { 431 | this.mOnEndListener = onEndListener 432 | } 433 | 434 | /** 435 | * Convert sp to pixel. 436 | */ 437 | private fun spToPx(sp: Float): Float { 438 | return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, sp, mContext.resources.displayMetrics) 439 | } 440 | 441 | /** 442 | * Convert dp to pixel. 443 | */ 444 | private fun dpToPx(dp: Float): Float { 445 | return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, mContext.resources.displayMetrics) 446 | } 447 | 448 | //扩展属性,显示时针 449 | private val Long.clock: String 450 | get() { 451 | var totalTime = (this / 1000).toInt()//秒 452 | var hour = 0 453 | var minute = 0 454 | var second = 0 455 | 456 | if (3600 <= totalTime) { 457 | hour = totalTime / 3600 458 | totalTime = totalTime - 3600 * hour 459 | } 460 | if (60 <= totalTime) { 461 | minute = totalTime / 60 462 | totalTime = totalTime - 60 * minute 463 | } 464 | if (0 <= totalTime) { 465 | second = totalTime 466 | } 467 | val sb = StringBuilder() 468 | 469 | if (hour < 10) { 470 | sb.append("0").append(hour).append(":") 471 | } else { 472 | sb.append(hour).append(":") 473 | } 474 | if (minute < 10) { 475 | sb.append("0").append(minute).append(":") 476 | } else { 477 | sb.append(hour).append(":") 478 | } 479 | if (second < 10) { 480 | sb.append("0").append(second) 481 | } else { 482 | sb.append(second) 483 | } 484 | return sb.toString() 485 | } 486 | 487 | 488 | interface OnEndListener { 489 | fun onAnimationEnd() 490 | 491 | fun onClick(overageTime: Long) 492 | } 493 | 494 | 495 | object TextStyle { 496 | /** 497 | * 固定文字(例如"跳过") 498 | */ 499 | val JUMP = 0 500 | /** 501 | * 倒计时(5s) 502 | */ 503 | val SECOND = 1 504 | /** 505 | * 倒计时(时钟00:00:02) 506 | */ 507 | val CLOCK = 2 508 | /** 509 | * 不显示任何东西 510 | */ 511 | val NONE = 3 512 | } 513 | 514 | companion object { 515 | 516 | private val TAG = "CountTimeProgressView" 517 | private val DEFAULT_BACKGROUND_COLOR_CENTER = Color.parseColor("#00BCD4") 518 | private val DEFAULT_BORDER_WIDTH = 3f 519 | private val DEFAULT_BORDER_DRAW_COLOR = Color.parseColor("#4dd0e1") 520 | private val DEFAULT_BORDER_BOTTOM_COLOR = Color.parseColor("#D32F2F") 521 | private val DEFAULT_MARK_BALL_WIDTH = 6f 522 | 523 | private val DEFAULT_MARK_BALL_COLOR = Color.parseColor("#536DFE") 524 | private val DEFAULT_MARK_BALL_FLAG = true 525 | private val DEFAULT_START_ANGLE = 0f 526 | private val DEFAULT_CLOCKWISE = true 527 | private val DEFAULT_COUNT_TIME = 5L 528 | 529 | private val DEFAULT_TEXTSTYLE = TextStyle.JUMP 530 | private val DEFAULT_TITLE_CENTER_TEXT = "jump" 531 | private val DEFAULT_TITLE_CENTER_COLOR = Color.parseColor("#FFFFFF") 532 | private val DEFAULT_TITLE_CENTER_SIZE = 16f 533 | 534 | } 535 | } 536 | 537 | -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | library 3 | 4 | -------------------------------------------------------------------------------- /library/src/test/java/com/sfyc/ctpv/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.sfyc.ctpv; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /screenshot/ctpv-video-to-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfyc23/CountTimeProgressView/c11911209fc1cbab0af01c2471259d46f5e51b34/screenshot/ctpv-video-to-gif.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------