All Projects → alxrm → Animated Clock Icon

alxrm / Animated Clock Icon

Licence: mit
Easy-to-use animated clock icon for Android

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Animated Clock Icon

Youtube Play Icon
Material style morphing play-pause drawable for Android
Stars: ✭ 57 (-77.47%)
Mutual labels:  icons, drawable
Drawablecolorchange
Android Library to dynamically change color of drawable.
Stars: ✭ 101 (-60.08%)
Mutual labels:  icons, drawable
Android Animated Icons
How to improve the user experience using animated icons with vector drawables on Android
Stars: ✭ 117 (-53.75%)
Mutual labels:  icons, drawable
Rplibs
Refs.cn 原型设计元件库,基于Axure RP 10/9/8,支持 Android、Apple、Windows、微信,移动、桌面平台的应用和网站原型设计。五年历程 2.6k+ star,感谢大家使用。
Stars: ✭ 2,622 (+936.36%)
Mutual labels:  icons
Titanic
A set of animated icons + code to insert them into the webpages
Stars: ✭ 2,457 (+871.15%)
Mutual labels:  icons
Evangelion Clock Screensaver
A digital clock screensaver inspired by the graphical interfaces from Neon Genesis Evengelion.
Stars: ✭ 234 (-7.51%)
Mutual labels:  clock
Bforartists
Bforartists is a fork of the popular 3D software Blender, with the goal to improve the UI.
Stars: ✭ 240 (-5.14%)
Mutual labels:  icons
Marquee Scroller
Marquee Scroller Clock News Weather and More
Stars: ✭ 211 (-16.6%)
Mutual labels:  clock
Vectorlogozone
3,000+ gorgeous SVG logos, perfect for your README or credits page
Stars: ✭ 239 (-5.53%)
Mutual labels:  icons
React Kawaii
Cute SVG React Components
Stars: ✭ 2,709 (+970.75%)
Mutual labels:  icons
Rtimageassets
A Xcode plugin to automatically generate 2x, 1x image from 3x image for you, or upscale to 3x from 2x
Stars: ✭ 2,490 (+884.19%)
Mutual labels:  icons
Prismatic Night
A dark themed startpage and dark themes for Firefox and Linux inspired by Material design and Adapta.
Stars: ✭ 223 (-11.86%)
Mutual labels:  icons
Smart Hierarchy
Better hierarchy for Unity.
Stars: ✭ 234 (-7.51%)
Mutual labels:  icons
Density Converter
A multi platform image density converting tool converting single or batches of images to Android, iOS, Windows or CSS specific formats and density versions given the source scale factor or width/height in dp. It has a graphical and command line interface and supports many image types (svg, psd, 9-patch, etc.) aswell as some lossless compressors like pngcrush.
Stars: ✭ 222 (-12.25%)
Mutual labels:  drawable
Silver
A cross-shell customizable powerline-like prompt with icons
Stars: ✭ 238 (-5.93%)
Mutual labels:  icons
Cornercal
A simple, clean calendar and clock app for macOS.
Stars: ✭ 213 (-15.81%)
Mutual labels:  clock
Clock Bar
Macbook | Clock, right on the touch bar
Stars: ✭ 237 (-6.32%)
Mutual labels:  clock
Ember Font Awesome
ember-cli addon for using Font Awesome icons in Ember apps
Stars: ✭ 225 (-11.07%)
Mutual labels:  icons
Material Menu
Animations for Android L drawer, back, dismiss and check icons
Stars: ✭ 2,481 (+880.63%)
Mutual labels:  icons
Taskbardock
Customize Windows 10 Taskbar with few extra features
Stars: ✭ 230 (-9.09%)
Mutual labels:  icons

Timecon

License

Easy-to-use animated clock icon written in Kotlin

Including in your project

Add to your root build.gradle:

allprojects {
	repositories {
	    // ...
	    maven { url "https://jitpack.io" }
	}
}

Add the dependency:

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

Usage

ClockDrawable

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

final ImageView clocks = (ImageView) findViewById(R.id.clocks); // some ImageView
final ClockDrawable clockDrawable = ClockDrawable.builder(this)
    .hours(4)                                                   // initial time hours
    .minutes(20)                                                // initial time minutes
    .withSpeed(-2.5F)                                           // set indeterminate animation minutes pointer speed (1F by default)
    .withColor(Color.WHITE)                                     // set icon color
    .withFrameWidth(Stroke.REGULAR)                             // set frame width
    .withPointerWidth(Stroke.THIN)                              // set pointer width
    .withDuration(600L)                                         // set animation duration in millis (600L by default)
    .withInterpolator(new DecelerateInterpolator())             // set animation interpolator (default is OverShootInterpolator)
    .withListener(new AnimatorListenerAdapter() {/*...*/})      // set animation listener
    .into(clocks);                                              // attach the Drawable you built to ImageView and returns Drawable
 // .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:

	<rm.com.clocks.ClockImageView
		android:id="@+id/clocks"
		android:layout_width="56dp"
		android:layout_height="56dp"
		android:layout_centerInParent="true"
		app:hours="16"
		app:minutes="20"
		app:timeSetDuration="400"
		app:clockColor="#BBFFFFFF"
		app:indeterminateSpeed="2"
		app:pointerWidth="thin"
		app:frameWidth="regular"
		/>

API

To set hours and minutes on the clocks without animation:

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

To change time with animation:

Clock.animateToTime(int hours, int minutes)

To make it spinning endlessly:

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

MIT License

Copyright (c) 2016 Alexey Derbyshev

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].