All Projects → ibrahimsn98 → Speedometer

ibrahimsn98 / Speedometer

Licence: mit
A lightweight circular indicator view library for Android

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Speedometer

Codeeditor
Code Editor Native Way
Stars: ✭ 155 (-15.3%)
Mutual labels:  library, customview
Simpleratingbar
SimpleRatingBar allows us to create a RatingBar with margin between items
Stars: ✭ 144 (-21.31%)
Mutual labels:  library, customview
Fillingbutton
🔥Replace typical onLongClickListener with this library!
Stars: ✭ 31 (-83.06%)
Mutual labels:  library, customview
Blurimage
This Android Project help you to make your image blur in fastest way
Stars: ✭ 162 (-11.48%)
Mutual labels:  library, customview
Rawspeed
fast raw decoding library
Stars: ✭ 179 (-2.19%)
Mutual labels:  library
Ksprefs
🚀⚡ Kotlin SharedPreferences wrapper & cryptographic preferences android library.
Stars: ✭ 176 (-3.83%)
Mutual labels:  library
Transitioner
A library for dynamic view-to-view transitions
Stars: ✭ 2,049 (+1019.67%)
Mutual labels:  library
Urlbuilder
Java Builders: URL builder
Stars: ✭ 174 (-4.92%)
Mutual labels:  library
Materialshadows
Material Shadows for android : A library for supporting convex material shadows
Stars: ✭ 2,145 (+1072.13%)
Mutual labels:  library
Micro Aws Lambda
A 7KB and 0 dependencies AWS Lambda library which supports middleware and easy debug.
Stars: ✭ 181 (-1.09%)
Mutual labels:  library
Preview Transition
This project is maintained by Ramotion, Inc. We specialize in the designing and coding of custom UI for Mobile Apps and Websites.
Stars: ✭ 2,079 (+1036.07%)
Mutual labels:  library
Unifiedtransform
A school management Software
Stars: ✭ 2,248 (+1128.42%)
Mutual labels:  library
Gwork
Skinnable GUI with useful widget collection. Fork of GWEN.
Stars: ✭ 179 (-2.19%)
Mutual labels:  library
Pdf Viewer
A Lightweight PDF Viewer Android library which only occupies around 125kb while most of the Pdf viewer occupies up to 16MB space.
Stars: ✭ 175 (-4.37%)
Mutual labels:  library
Txeh
Go library and CLI utilty for /etc/hosts management.
Stars: ✭ 181 (-1.09%)
Mutual labels:  library
Movingnumbersview
Moving numbers effect in SwiftUI
Stars: ✭ 175 (-4.37%)
Mutual labels:  library
Disco
a protocol to encrypt communications and a cryptographic library based on Disco
Stars: ✭ 178 (-2.73%)
Mutual labels:  library
Ckchangelog
ckChangeLog - An Android Library to display a Change Log
Stars: ✭ 180 (-1.64%)
Mutual labels:  library
Spannabletextview
SpannableTextView is a custom TextView which lets you customize the styling of slice of your text or statment via Spannables, but without the hassle of having to deal directly with Spannable themselves.
Stars: ✭ 177 (-3.28%)
Mutual labels:  library
Json table
Flutter package: Json Table Widget to create table from json array
Stars: ✭ 178 (-2.73%)
Mutual labels:  library

Speedometer Android

A lightweight circular indicator view library for Android

GIF

In-app preview

XML Attributes

<me.ibrahimsn.lib.Speedometer
    android:id="@+id/speedometer"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:maxSpeed="100"
    app:borderSize="8dp"
    app:metricText="km/h"
    app:borderColor="#402c47"
    app:fillColor="#d83a78"
    app:textColor="#f5f5f5"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"/>

Usage

val speedometer = findViewById<Speedometer>(R.id.speedometer)

speedometer.setSpeed(95, 1000L) // speed: Int, duration: Long

speedometer.setSpeed(95, 1000L, {
    // Do on animation end
})

Setup

Follow me on Twitter @ibrahimsn98

Step 1. Add the JitPack repository to your build file

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

Step 2. Add the dependency

dependencies {
    implementation 'com.github.ibrahimsn98:speedometer:1.0.1'
}

License

MIT License

Copyright (c) 2020 İbrahim Süren

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].