项目作者: alxrm

项目描述 :
Easy-to-use animated clock icon for Android
高级语言: Kotlin
项目地址: git://github.com/alxrm/animated-clock-icon.git
创建时间: 2016-11-11T10:30:34Z
项目社区:https://github.com/alxrm/animated-clock-icon

开源协议:MIT License

下载


Timecon


License

Easy-to-use animated clock icon written in Kotlin

Including in your project

Add to your root build.gradle:

  1. allprojects {
  2. repositories {
  3. // ...
  4. maven { url "https://jitpack.io" }
  5. }
  6. }

Add the dependency:

  1. dependencies {
  2. implementation 'com.github.alxrm:animated-clock-icon:1.0.2'
  3. }

Usage

ClockDrawable

You can use it as a Drawable, and insert into any ImageView,
with beautiful fluent API like this:

  1. final ImageView clocks = (ImageView) findViewById(R.id.clocks); // some ImageView
  2. final ClockDrawable clockDrawable = ClockDrawable.builder(this)
  3. .hours(4) // initial time hours
  4. .minutes(20) // initial time minutes
  5. .withSpeed(-2.5F) // set indeterminate animation minutes pointer speed (1F by default)
  6. .withColor(Color.WHITE) // set icon color
  7. .withFrameWidth(Stroke.REGULAR) // set frame width
  8. .withPointerWidth(Stroke.THIN) // set pointer width
  9. .withDuration(600L) // set animation duration in millis (600L by default)
  10. .withInterpolator(new DecelerateInterpolator()) // set animation interpolator (default is OverShootInterpolator)
  11. .withListener(new AnimatorListenerAdapter() {/*...*/}) // set animation listener
  12. .into(clocks); // attach the Drawable you built to ImageView and returns Drawable
  13. // .build(); or you can just use build() to simply get Drawable

All of these methods can be ignored, so the drawable will be created with it’s default state

ClockImageView

There is an ImageView wrapper that simply draws the icon and provides an API to work with it.
You can use it in any layout.

Customization is also available through xml attributes:

  1. <rm.com.clocks.ClockImageView
  2. android:id="@+id/clocks"
  3. android:layout_width="56dp"
  4. android:layout_height="56dp"
  5. android:layout_centerInParent="true"
  6. app:hours="16"
  7. app:minutes="20"
  8. app:timeSetDuration="400"
  9. app:clockColor="#BBFFFFFF"
  10. app:indeterminateSpeed="2"
  11. app:pointerWidth="thin"
  12. app:frameWidth="regular"
  13. ></rm.com.clocks.ClockImageView>

API

To set hours and minutes on the clocks without animation:

  1. Clock.setHours(int hours)
  2. Clock.setMinutes(int minutes)

To change time with animation:

  1. Clock.animateToTime(int hours, int minutes)

To make it spinning endlessly:

  1. Clock.animateIndeterminate()

Use stop() to interrupt this indeterminate animation

If you want it to “tick” endlessly, set indeterminateSpeed to 0.001F

Or if you want it to show a rewind like animation, set negative indeterminateSpeed

Contribution

I’d like to improve this, so feel free to suggest your ideas about it in the issues,
or, if you found a bug and you have some free time to fix it, writing a few lines of code in Kotlin,
feel free to send me PRs.

License

  1. MIT License
  2. Copyright (c) 2016 Alexey Derbyshev
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in all
  10. copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  17. SOFTWARE.