StateProgressBar


Source link: https://github.com/kofigyan/StateProgressBar

StateProgressBar

StateProgressBar is an Android library to realize the various states and transitions in a ProgressBar.

Quick Start

Get a feel of how it works:

Check the wiki for detail documentation.

Gradle

Add the following dependency to your build.gradle :

dependencies {

compile 'com.kofigyan.stateprogressbar:stateprogressbar:0.0.6' 
}
 

XML

<com.kofigyan.stateprogressbar.StateProgressBar
  android:id="@+id/your_state_progress_bar_id"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  app:spb_currentStateNumber="three"
  app:spb_maxStateNumber="four"
  app:spb_stateBackgroundColor="#BDBDBD"
  app:spb_stateForegroundColor="#009688"
  app:spb_stateNumberBackgroundColor="#808080"
  app:spb_stateNumberForegroundColor="#eeeeee"
  app:spb_currentStateDescriptionColor="#009688"
  app:spb_stateDescriptionColor="#808080"
  app:spb_animateToCurrentProgressState="true"
  app:spb_checkStateCompleted="true"/>  

To add description data to StateProgressBar :

String[] descriptionData = {
"Details", "Status", "Photo", "Confirm"
}
;  @Override protected void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  setContentView(R.layout.your_layout);

StateProgressBar stateProgressBar = (StateProgressBar) findViewById(R.id.your_state_progress_bar_id);

  stateProgressBar.setStateDescriptionData(descriptionData);
  
}
  

XML Attributes


 spb_currentStateNumber => Current state number. Must be one of the following constant values : one , two , three , four .
  Related method : setCurrentStateNumber(StateNumber)

spb_maxStateNumber  => Maximum state number. Must be one of the following constant values : one , two , three , four .
  Related method : setMaxStateNumber(StateNumber)

spb_stateBackgroundColor  => State background color. Should be a color value. Possible forms are "#rgb", "#argb", "#rrggbb", or "#aarrggbb".
  Related method : setBackgroundColor(int)

spb_stateForegroundColor  => State foreground color. Should be a color value. Possible forms are "#rgb", "#argb", "#rrggbb", or "#aarrggbb".
  Related method : setForegroundColor(int)

spb_stateNumberBackgroundColor => State number background color. Should be a color value. Possible forms are "#rgb", "#argb", "#rrggbb", or "#aarrggbb".
  Related method : setStateNumberBackgroundColor(int)

spb_stateNumberForegroundColor => State number foreground color. Should be a color value. Possible forms are "#rgb", "#argb", "#rrggbb", or "#aarrggbb".
  Related method : setStateNumberForegroundColor(int)

spb_currentStateDescriptionColor => Current state description color. Should be a color value. Possible forms are "#rgb", "#argb", "#rrggbb", or "#aarrggbb".
  Related method : setCurrentStateDescriptionColor(int)

spb_stateDescriptionColor => State description color. Should be a color value. Possible forms are "#rgb", "#argb", "#rrggbb", or "#aarrggbb".
  Related method : setStateDescriptionColor(int)

spb_stateSize => State size . Must be a dimension value with preferrable unit of dp eg. 25dp
  Related method : setStateSize(float)

spb_stateTextSize => State text(number) size . Must be a dimension value with preferrable unit of sp eg. 15sp
  Related method : setStateNumberTextSize(float)

spb_stateDescriptionSize => State description size . Must be a dimension value with preferrable unit of dp eg. 20dp
  Related method : setStateDescriptionSize(float)

  spb_stateLineThickness => State joining line size(thickness) . Must be a dimension value with preferrable unit of dp eg. 10dp
  Related method : setStateLineThickness(float)

spb_checkStateCompleted => Check completed states . Must be a boolean value,either "true" or "false"
  Related method : checkStateCompleted(boolean)

  spb_animateToCurrentProgressState => Animate joining line to current progress state . Must be a boolean value,either "true" or "false"
  Related method : enableAnimationToCurrentState(boolean)

  spb_enableAllStatesCompleted => Check all states . Must be a boolean value,either "true" or "false"
  Related method : setAllStatesCompleted(boolean)

spb_descriptionTopSpaceDecrementer => Space between state and description decrementer . Must be a dimension value with preferrable unit of dp eg. 10dp
  Related method : setDescriptionTopSpaceDecrementer(float)

spb_descriptionTopSpaceIncrementer => Space between state and description incrementer . Must be a dimension value with preferrable unit of dp eg. 10dp
  Related method : setDescriptionTopSpaceIncrementer(float)

spb_animationDuration => State joining line animation duration . Must be an integer value eg. "500" , "1000" , "2000" , "5000" , "10000" etc
  Related method : setAnimationDuration(int)

spb_animationStartDelay => State joining line animation start delay . Must be an integer value eg. "500" , "1000" , "2000" , "5000" , "10000" etc
  Related method : setAnimationStartDelay(int) 

JAVA

StateProgressBar stateProgressBar = (StateProgressBar) findViewById(R.id.state_progress_bar);

stateProgressBar.setForegroundColor(ContextCompat.getColor(this, R.color.demo_state_foreground_color));
 stateProgressBar.setBackgroundColor(ContextCompat.getColor(this, android.R.color.darker_gray));
  stateProgressBar.setStateNumberForegroundColor(ContextCompat.getColor(this, android.R.color.white));
 stateProgressBar.setStateNumberBackgroundColor(ContextCompat.getColor(this, android.R.color.background_dark));
  stateProgressBar.setStateSize(40f);
 stateProgressBar.setStateNumberTextSize(20f);
 stateProgressBar.setStateLineThickness(10f);
  stateProgressBar.enableAnimationToCurrentState(true);
  stateProgressBar.setDescriptionTopSpaceIncrementer(10f);
 stateProgressBar.setStateDescriptionSize(18f);
  stateProgressBar.setCurrentStateDescriptionColor(ContextCompat.getColor(this, R.color.description_foreground_color));
 stateProgressBar.setStateDescriptionColor(ContextCompat.getColor(this,  R.color.description_background_color));
 

EXTRA DEMOS(WITH CODES)

  • A Two-State StateProgressBar

<com.kofigyan.stateprogressbar.StateProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:spb_currentStateNumber="one"
app:spb_maxStateNumber="two"/>  
  • A Three-State StateProgressBar

  <com.kofigyan.stateprogressbar.StateProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:spb_currentStateNumber="two"
app:spb_maxStateNumber="three"/>  
  • A Four-State StateProgressBar


<com.kofigyan.stateprogressbar.StateProgressBar
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 app:spb_currentStateNumber="three"
 app:spb_maxStateNumber="four"/>  
  • Check States Completed


<com.kofigyan.stateprogressbar.StateProgressBar
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 app:spb_currentStateNumber="three"
 app:spb_maxStateNumber="four"
 app:spb_checkStateCompleted="true"/>  
  • Check All States



 <com.kofigyan.stateprogressbar.StateProgressBar

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  app:spb_currentStateNumber="three"

  app:spb_maxStateNumber="four"

  app:spb_enableAllStatesCompleted="true"/>  
  • Animate to Current State


 <com.kofigyan.stateprogressbar.StateProgressBar

android:layout_width="wrap_content"

android:layout_height="wrap_content"

app:spb_currentStateNumber="three"

app:spb_maxStateNumber="four"

app:spb_stateBackgroundColor="#BDBDBD"

app:spb_stateForegroundColor="#DB0082"

app:spb_stateNumberBackgroundColor="#808080"

app:spb_stateNumberForegroundColor="#eeeeee"

app:spb_currentStateDescriptionColor="#DB0082"

app:spb_stateDescriptionColor="#808080"

app:spb_animateToCurrentProgressState="true"

app:spb_checkStateCompleted="true"/>

  
  • Add Description Data to StateProgressBar

 <com.kofigyan.stateprogressbar.StateProgressBar  android:id="@+id/your_state_progress_bar_id"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  app:spb_currentStateNumber="two"  app:spb_maxStateNumber="four"/>  String[] descriptionData = {
"Details", "Status", "Photo", "Confirm"
}
;  @Override protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.your_layout);

StateProgressBar stateProgressBar = (StateProgressBar) findViewById(R.id.your_state_progress_bar_id);
  stateProgressBar.setStateDescriptionData(descriptionData);
  
}
  
  • Change Colors (State Background , State Foreground, State Number Background ,State Number Foreground, Current State Description, State Description)

<com.kofigyan.stateprogressbar.StateProgressBar
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 app:spb_currentStateNumber="three"
 app:spb_maxStateNumber="four"
 app:spb_stateBackgroundColor="#BDBDBD"
 app:spb_stateForegroundColor="#009688"
 app:spb_stateNumberBackgroundColor="#808080"
 app:spb_stateNumberForegroundColor="#eeeeee"
 app:spb_currentStateDescriptionColor="#009688"
 app:spb_stateDescriptionColor="#808080"
 app:spb_checkStateCompleted="true"/>  
  • Description Top Spacing

<com.kofigyan.stateprogressbar.StateProgressBar

android:layout_width="wrap_content"

android:layout_height="wrap_content"

app:spb_descriptionTopSpaceIncrementer="5dp"/>

  String[] descriptionData = {
"Details", "Status", "Photo", "Confirm"
}
;

 @Override

protected void onCreate(Bundle savedInstanceState) {

 super.onCreate(savedInstanceState);

 setContentView(R.layout.your_layout);

  StateProgressBar stateProgressBar = (StateProgressBar) findViewById(R.id.your_state_progress_bar_id);

 stateProgressBar.setStateDescriptionData(descriptionData);

 
}
  
  • Change Dimensions (State, State Number ,State Line and State Description sizes)

<com.kofigyan.stateprogressbar.StateProgressBar android:layout_width="wrap_content" android:layout_height="wrap_content" app:spb_descriptionTopSpaceIncrementer="2dp" app:spb_stateDescriptionSize="20sp" app:spb_stateLineThickness="10dp" app:spb_stateSize="40dp" app:spb_stateTextSize="15sp" /> 

Developer

Kofi Gyan ( [email protected]) Currently open to android engineer positions(remote/relocation)

License

Copyright 2016 Kofi Gyan.

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.

Resources

Command design pattern implementation for Android Data Binding.

WebP support for Android API Level 4 and up, includes the native library and a WebPImageView to render webp in your app.

A powerful and simple library to open issues on GitHub directly from your app.

Bottom Navigation component inspired by the Google Material Design Guidelines.

Actual Number Picker is an Android custom-built View for choosing numbers. It's simple, elegant, fits in a small-height constraint box and it can be completely customized in XML. You can easily swipe it right and left, or click on arrow controls to increase/decrease the current value.

Fetches Vimeo's mp4 URLs for Android.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes