Android-ProgressViewsLib


Source link: https://github.com/natasam/DemoProgressViewsLibApp

Android-ProgressViewsLib

Android library with custom Progress Bars in different shapes.

##DemoProgressViewsLibApp DemoProgressViewsLibApp is sample app with progressviewslib, Android library which is collection of custom views that represents ProgressBars in different shapes. It is easy to understand, to integrate and to customize it. At the moment there are four different types:

- CircleProgressBar

- CircleSegmentBar

- ArcProgressBar

- LineProgressBar(vertical or horizontal)

All ProgressViews can be easy customized by your needs, through a wide range of methods or through xml.

#Implementation In https://github.com/natasam/DemoProgressViewsLibApp you have example with all four views in role of ProgressBar and how to customize them. Basic implementation through xml would be, for example for CircleProgressBar:

<com.natasa.progressviews.CircleProgressBar

 android:id="@+id/circle_progress"

 android:layout_width="130dp"

 android:layout_height="130dp"

 app:bar_width="12dp"

 app:bar_color="#b5b6b9"

 app:progress=55

 app:progress_color="#d3f115"

 app:progress_width="10dp" /> 

or you can add it programmatically in your class:

 CircleProgressBar circleProgressBar = new CircleProgressBar(this);

((ViewGroup) findViewById(R.id.rlContainer)).addView(circleProgressBar);

circleProgressBar.setProgress(65);

circleProgressBar.setWidth(200);

circleProgressBar.setWidthProgressBackground(25);

circleProgressBar.setWidthProgressBarLine(25);

circleProgressBar.setText("Loading...");

circleProgressBar.setTextSize(30);

circleProgressBar.setBackgroundColor(Color.LTGRAY);

circleProgressBar.setProgressColor(Color.RED);
 

set linear gradient for progress with default colors or add your array of colors:



  circleProgressBar.setLinearGradientProgress(true);
 or

circleProgressBar.setLinearGradientProgress(true, colors_array);
 

add progress listener on every ProgressView to track progress if you want:

circleProgressBar.setOnProgressViewListener(new OnProgressViewListener() {

 @Override

 public void onFinish() {

  //do something on progress finish

  circleProgressBar.setText("done!");

  // circleProgressBar.resetProgressBar();

 
}

  @Override

 public void onProgressUpdate(float progress) {

  circleProgressBar.setText("" + (int) progress);

  
}

}
);
 
set start position for CircleProgressBar progress with setStartPositionInDegrees(ProgressStartPoint position), or in degrees: setStartPositionInDegrees(int degrees) 

set progress with rounded edges with:


circleProgressBar.setRoundEdgeProgress(true)  

for convenience, you can always cast them as ProgressShape:


ProgressViewFactory pv = new ProgressViewFactory(this);

ProgressShape progres = pv.getShape(ShapeType.ARC);

addView((View) progres);
 

All of them extend ProgressView class which extends View and also implements ProgressShape interface. So you have a lot of possibilities to use them as you wish.

you can set all Progress views as indeterminate progress with infinite animation and speed of animation as parametar:



 progressBar.setProgressIndeterminateAnimation(2000);
 

#Library Library is available here: https://github.com/natasam/android-progressviewslib

Resources

AssetCopier copies assets to real files then optionally uses MediaScannerConnection to scan them for media. The end result is real files in the file system all ready for consumption. It's especially useful for providing an app with test data (images/videos) for UI testing.

Fetch is a simple yet powerful Android library that allows you to manage downloads more efficiently in your Android apps. It uses a background service on the device to download and maintain requests.

Features:

  • Simple and easy to use API.
  • Continuous downloading in the background.
  • Ability to pause and resume downloads.
  • Set the priority of a download request.
  • Ability to retry failed downloads.
  • Easy progress and status tracking.
  • And more...

Android android.graphics.Color has a function for color-parsing and supports basic colors of w3c.

This project is for supporting more color keywords. It's based on W3C's Expanded Color.

Viger - View Pager PDF OpenSource.

A SeekBar suited for showing a preview of something. As seen in Google Play Movies.

An Android DatePicker for Persian Calendar.

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