Description
Dynamic Speedometer, Gauge for Android. nice Animation, amazing, powerful, and multi shape ⚡ , you can change (colors, bar width, shape, text, font ...everything !!), this Library has also made to build games with accelerate and decelerate.
SpeedView alternatives and similar packages
Based on the "Animations" category.
Alternatively, view SpeedView alternatives based on common mentions on social networks and blogs.
-
Lottie for Android, iOS, and React Native
Render After Effects animations natively on Android and iOS -
UltimateAndroidReference
🚀 Ultimate Android Reference - Your Road to Become a Better Android Developer -
ListViewAnimations
An Android library which allows developers to easily add animations to ListView items -
NineOldAndroids
Android library for using the Honeycomb animation API on all versions of the platform back to 1.0! -
android-flip
A component for flip animation on Android, which is similar to the effect in Flipboard iPhone/Android -
ChatKit for Android
Flexible components for chat UI implementation with flexible possibilities for styling, customizing and data management -
RecyclerViewItemAnimators
This repo provides simple animators for the item views in the RecyclerView This code is cloned from DefaultItemAnimator provided by Google customizing the animations. -
PhotoEditor
A Photo Editor library with simple, easy support for image editing using paints,text,emoji and Sticker like stories. -
ViewPagerTransforms
Library containing common animations needed for transforming ViewPager scrolling for Android v13+. -
android-ripple-background
A beautiful ripple animation for your app -
FabulousFilter
Android library to animate Floating Action Button to Bottom Sheet Dialog and vice-versa -
BaseAnimation
BaseAnimation network Android animation set, custom controls, nearly 200 kinds of source code! BaseAnimation, if a new version is updated automatically to remind everyone, I hope everyone will contribute their animated XML files or other source, together to create this open source app! -
EasyAndroidAnimations
Easy Android Animations is an animation library that aims to make android animations easier, with 50+ builtin animations, it allows you to introduce many complex animation effects in your application with one or two lines of code. -
PreLollipopTransition
Simple tool which help you to implement activity transition for pre-Lollipop devices. -
Stfalcon ImageViewer
A simple and customizable Android full-screen image viewer with shared image transition support, "pinch to zoom" and "swipe to dismiss" gestures -
EasyFlipView
A quick and easy flip view through which you can create views with two sides like credit cards, poker cards etc. -
TransitionPlayer
Android library to control Transition animates. A simple way to create a interactive animation. -
Road Runner
Road Runner is a library for android which allow you to make your own loading animation using a SVG image -
WhatTodo
A Simple Todo app design in flutter to keep track of your task on daily basis.You can add project,labels and due-date to your task also you can sort your task on the basis of project, label and dates -
AppIntroAnimation
AppIntroAnimation is a set of code snippets to make cool intro screen for your app with special Image Translation and Transformation animation effects. It is very easy to use and customize without adding third party library integrations. -
Youtube UI/UX Animation
With MVVM Architecture pattern using Android Architecture Components This is a sample app demonstrating Youtube player animation using constraint layout -
Dachshund Tab Layout
Extended Android tab layout with animated indicators that have continuous feedback. -
TextFieldBoxes
New Material Design text field that comes in a box, based on Google Material Design guidelines.
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of SpeedView or a related project?
README
SpeedView
Dynamic Speedometer, Gauge for Android. amazing, powerful, and multi shape :zap: , you can change (colors, bar width, shape, text, font ...everything !!), this Library has also made to build games with accelerate
and decelerate
,
see project on GitHub.
minSdkVersion=11
Library Size just ~ 48 KB.
download demo on Google Play:\
this library has rewritten with Kotlin in version 1.4.0 manually, which means it may have some issues. if you have any problem please open an issue, and you can use old version 1.3.1 written in java.
Speedometers...
Gauges...
Donations
if you like this project, you can support it and support the creator of it, and we are really thankful for your donations 😄.
All donations accepted in Bountysource:
- 5$: good job, here's a cup of tea (we know you don't like coffee:wink:).
- 10$: very nice library, you saved my day.
- 15$: really appreciate your work, keep going!.
- 100$, maybe more: you are a Dentist, and you have done all of this!!
go to project in bountysource for more options.
Download
this library required jcenter and kotlin version 1.3.72 or above, you still can use it in java projects.
first add kotlin to your project, in build.gradle
project level:
buildscript {
ext.kotlin_version = '1.3.72'
dependencies {
...
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
...
allprojects {
repositories {
...
jcenter()
}
}
add this line to build.gradle
app module level:
apply plugin: 'kotlin-android'
...
dependencies {
implementation 'com.github.anastr:speedviewlib:1.5.3'
}
for maven
<dependency>
<groupId>com.github.anastr</groupId>
<artifactId>speedviewlib</artifactId>
<version>1.5.3</version>
<type>pom</type>
</dependency>
Get Starting with SpeedView Library.
Simple Usage
choose one of Speedometers, gauges and add it to your Layout.xml
, here we use SpeedView.
<com.github.anastr.speedviewlib.SpeedView
android:id="@+id/speedView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
for all speedometers and gauges, this simple method to smoothly change speed:
SpeedView speedometer = findViewById(R.id.speedView)
// move to 50 Km/s
speedometer.speedTo(50)
by default, the speed change Duration between last speed and new speed is 2000 ms
.
you can use other Duration by method :
// move to 50 Km/s with Duration = 4 sec
speedometer.speedTo(50, 4000)
automatically indicator move around current speed to add some reality to speedometer because of Tremble, you can stop it by app:sv_withTremble="false"
Attribute or call this method in the code.
speedometer.withTremble = false
for more control, see The most important methods at Get Started - Wiki for All Speedometers & Gauges. and also you can see Advanced Usage in Usage - Wiki.
more advanced features:
- Work with Indicators - Wiki.
- Work With Notes - Wiki.
All Speedometers, Gauges :
Name Screenshot XML Layout
1. SpeedView - Wiki < com.github.anastr.speedviewlib.SpeedView android:id="@+id/speedView" android:layout_width="wrap_content" android:layout_height="wrap_content" />
2. DeluxeSpeedView - Wiki < com.github.anastr.speedviewlib.DeluxeSpeedView android:id="@+id/deluxeSpeedView" android:layout_width="wrap_content" android:layout_height="wrap_content" />
3. AwesomeSpeedometer - Wiki < com.github.anastr.speedviewlib.AwesomeSpeedometer android:id="@+id/awesomeSpeedometer" android:layout_width="wrap_content" android:layout_height="wrap_content" />
4. RaySpeedometer - Wiki < com.github.anastr.speedviewlib.RaySpeedometer android:id="@+id/raySpeedometer" android:layout_width="wrap_content" android:layout_height="wrap_content" />
5. PointerSpeedometer - Wiki < com.github.anastr.speedviewlib.PointerSpeedometer android:id="@+id/pointerSpeedometer" android:layout_width="wrap_content" android:layout_height="wrap_content" />
6. TubeSpeedometer - Wiki < com.github.anastr.speedviewlib.TubeSpeedometer android:id="@+id/tubeSpeedometer" android:layout_width="wrap_content" android:layout_height="wrap_content" />
7. ImageSpeedometer - Wiki < com.github.anastr.speedviewlib.ImageSpeedometer android:id="@+id/imageSpeedometer" android:layout_width="wrap_content" android:layout_height="wrap_content" app:sv_image="@drawable/your_image" />
8. ProgressiveGauge - Wiki < com.github.anastr.speedviewlib.ProgressiveGauge android:id="@+id/gauge" android:layout_width="match_parent" android:layout_height="wrap_content" />
9. ImageLinearGauge - Wiki < com.github.anastr.speedviewlib.ImageLinearGauge android:id="@+id/gauge" android:layout_width="wrap_content" android:layout_height="wrap_content" app:sv_image="@drawable/fire" />
TODO
- build start animation.
- add fuel gauge component.
- build new custom speedometer.
your pull request
is always Welcome, please review the rules of contribution to make useful change.
Coming Soon ...
I will try to draw this Speedometer. if you have any idea, image, template please open new issue and give me the image , and i well try to add it to the Library.
LICENSE
Copyright 2016 Anas Altair
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*Note that all licence references and agreements mentioned in the SpeedView README section above
are relevant to that project's source code only.