Round Corner Progress Bar


Source link: https://github.com/akexorcist/Android-RoundCornerProgressBar

Android-RoundCornerProgressBar

Round Corner Progress Bar Library for Android

Colorful progress bar with round corner on progress which you can customized a color and corner radius.

What's new in version 2.0

  • New code structure, Easy for further development

Demo

Round Corner Progress Bar Demo (Play Store)

Round Corner Progress Bar

A simple round corner progress bar that can change a color of progress and background and a corner radius in dp unit (Very Recommended)

Icon Round Corner Progress Bar

A round corner progress bar with a changeable icon on the left of progress bar

Installation

Maven

<dependency>
<groupId>com.akexorcist</groupId>
<artifactId>RoundCornerProgressBar</artifactId>
<version>2.0.3</version> </dependency> 

Gradle

compile 'com.akexorcist:RoundCornerProgressBar:2.0.3' 

Feature

  • Customize to your progress and background color, corner radius, padding between inner component
  • Easy to use

Usage

Define 'app' namespace on root view in your layout

xmlns:app="http://schemas.android.com/apk/res-auto"

Include this progress bar library in your layout

<com.akexorcist.roundcornerprogressbar.RoundCornerProgressBar

android:layout_width="dimension"

android:layout_height="dimension"

app:rcProgress="float"

app:rcSecondaryProgress="float"

app:rcMax="float"

app:rcRadius="dimension"

app:rcBackgroundPadding="dimension"

app:rcReverse="boolean"

app:rcProgressColor="color"

app:rcSecondaryProgressColor="color"

app:rcBackgroundColor="color" />

<com.akexorcist.roundcornerprogressbar.IconRoundCornerProgressBar

android:layout_width="dimension"

android:layout_height="dimension"

app:rcProgress="float"

app:rcSecondaryProgress="float"

app:rcMax="float"

app:rcRadius="dimension"

app:rcBackgroundPadding="dimension"

app:rcReverse="boolean"

app:rcProgressColor="color"

app:rcSecondaryProgressColor="color"

app:rcBackgroundColor="color"

app:rcIconSrc="integer"

app:rcIconSize="dimension"

app:rcIconWidth="dimension"

app:rcIconHeight="dimension"

app:rcIconPadding="dimension"

app:rcIconPaddingLeft="dimension"

app:rcIconPaddingRight="dimension"

app:rcIconPaddingTop="dimension"

app:rcIconPaddingBottom="dimension"

app:rcIconBackgroundColor="color" />

Recommended how to set progress bar height

  • android:layout_height for RoundCornerProgressBar height
  • android:iconSize for IconRoundCornerProgressBar height

Public method on RoundCornerProgressBar

int getRadius() void setRadius(int radius) int getPadding() void setPadding(int padding) float getMax() void setMax(float max)  float getProgress() void setProgress(float progress) float getSecondaryProgressWidth() float getSecondaryProgress() void setSecondaryProgress(float secondaryProgress)  int getProgressBackgroundColor() void setProgressBackgroundColor(int colorBackground) int getProgressColor() void setProgressColor(int colorProgress) int getSecondaryProgressColor() void setSecondaryProgressColor(int colorSecondaryProgress)  boolean isReverse() void setReverse(boolean isReverse)  void setOnProgressChangedListener(OnProgressChangedListener listener) float getLayoutWidth() void invalidate()

Public method on IconRoundCornerProgressBar

int getIconImageResource() void setIconImageResource(int resId)  int getIconSize() void setIconSize(int size)  int getIconPadding() void setIconPadding(int padding) int getIconPaddingLeft() void setIconPaddingLeft(int padding) int getIconPaddingRight() void setIconPaddingRight(int padding) int getIconPaddingTop() void setIconPaddingTop(int padding) int getIconPaddingBottom() void setIconPaddingBottom(int padding)  int getColorIconBackground() void setIconBackgroundColor(int color)  void setOnIconClickListener(OnIconClickListener listener)

Example

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:layout_height="match_parent"

android:layout_width="match_parent"
  android:orientation="vertical" >

<com.akexorcist.roundcornerprogressbar.RoundCornerProgressBar

android:id="@+id/progress_1"

android:layout_height="320dp"

 android:layout_width="40dp"

 app:rcBackgroundPadding="5dp" />

<com.akexorcist.roundcornerprogressbar.IconRoundCornerProgressBar

android:id="@+id/progress_2"

android:layout_height="320dp"

 android:layout_width="wrap_content"

app:rcBackgroundPadding="10dp"

app:rcIconSize="50dp"

 app:rcIconPadding="5dp" />  </LinearLayout>

RoundCornerProgressBar progress1 = (RoundCornerProgressBar) findViewById(R.id.progress_1);
 progress1.setProgressColor(Color.parseColor("#ed3b27"));
 progress1.setProgressBackgroundColor(Color.parseColor("#808080"));
 progress1.setMax(70);
 progress1.setProgress(15);
  int progressColor1 = progress1.getProgressColor();
 int backgroundColor1 = progress1.getProgressBackgroundColor();
 int max1 = progress1.getMax();
 int progress1 = progress1.getProgress();

RoundCornerProgressBar progress2 = (RoundCornerProgressBar) findViewById(R.id.progress_1);
 progress2.setProgressColor(Color.parseColor("#56d2c2"));
 progress2.setProgressBackgroundColor(Color.parseColor("#757575"));
 progress2.setIconBackgroundColor(Color.parseColor("#38c0ae"));
 progress2.setMax(550);
 progress2.setProgress(147);
 progress2.setIconImageResource(imageResource);
  int progressColor2 = progress2.getProgressColor();
 int backgroundColor2 = progress2.getProgressBackgroundColor();
 int headerColor2 = progress2.getColorIconBackground();
 int max2 = progress2.getMax();
 int progress2 = progress2.getProgress();

Documentation

Thai Language : Round Corner Progress Bar ????????????????

Special Thanks

Artit Kuiwilai @first087

Next

• Add Text Round Corner Progress Bar (Underconstruction)

TextRoundCornerProgressBar Additional attribute for TextRoundCornerProgressBar

rcTextProgressColor rcTextProgressSize rcTextProgressMargin rcTextProgress 

Additional method for TextRoundCornerProgressBar

String getProgressText() void setProgressText(String text) void setProgress(float progress) int getTextProgressColor() void setTextProgressColor(int color) int getTextProgressSize() void setTextProgressSize(int size) int getTextProgressMargin() void setTextProgressMargin(int margin) 

Licence

Copyright 2015 Akexorcist

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or 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

SquareMenu is a custom Floating Action Button with a different shape from traditional FABs and with three sub menu buttons.

A simple helper library to request permissions in Android M and above.

This is a sample project which helps anybody who wish to work with GreenDAO library.

This application contains all the thing you need to start creating project using GreenDAO.

Easy way to put and get data and Object for the shared preferences in Android.

Make things easy when you need to write a sql statment for Android SQLite.

A library allowing you to manage Wi-Fi peer-to-peer connectivity in a reactive way. The library itself is a RxJava wrapper for Android's WifiP2pManager, used for discovering available peers, setup connection to peers and query for the list of peers.

When a p2p connection is formed over wifi, devices continue to maintain the uplink connection over mobile or any other available network for internet connectivity.

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