Comparing Performance Bar

Additional

Language
Kotlin
Version
1.1.3 (Aug 30, 2021)
Created
Apr 19, 2021
Updated
Feb 12, 2022 (Retired)
Owner
Kostas Antoniou (cliffgr)
Contributors
Kostas Antoniou (cliffgr)
Ahmed Mones (Al-Taie)
2
Activity
Badge
Generate
Download
Source code

Advertisement

ComparingPerformanceBar

Simple Progress View that you can compare things, like statistics of a Football match

Dependency

Add the following to your app module build.gradle file

dependencies {
    implementation 'com.github.cliffgr:ComparingPerformanceBar:1.1.3'
}

Usage

Percentage

 <com.cliff.comparingperformancebar.PercentageProgressBar
        android:id="@+id/percentageProgressBar"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginStart="8dp"
        android:layout_marginEnd="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:ppb_percentage="50"
        app:ppb_progressLeftColor="#77B9C1"
        app:ppb_progressRightColor="#45718B"
        app:ppb_textSize="18sp" />

You can set the value programmatically by calling the following method

 val progressBar: PercentageProgressBar = findViewById(R.id.percentageProgressBar)
 progressBar.setProgress(30.0f)

Value

  <com.cliff.comparingperformancebar.ValueProgressBar
        android:id="@+id/valuesProgressBar"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="16dp"
        android:layout_marginEnd="8dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/percentageProgressBar"
        app:vpb_progressLeftColor="#77B9C1"
        app:vpb_progressRightColor="#45718B"
        app:vpb_percent="false"
        app:vpb_textSize="18sp"
        app:vpb_valueLeft="6"
        app:vpb_valueRight="10" />

You can set the value programmatically by calling the following method

  val valueProgressBar: ValueProgressBar = view.findViewById(R.id.valuesProgressBar)
  valueProgressBar.setValues(10.0f, 7.0f)

Value Percent

  <!-- just set this attribute to true -->
  <com.cliff.comparingperformancebar.ValueProgressBar
        ...
        app:vpb_percent="true"
        ... />

Next Tasks

  • Animations
  • Shadows

License

Copyright 2021 Kostas Antoniou

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.