All Projects → liihuu → ProgressBar

liihuu / ProgressBar

Licence: MIT license
Beautiful progress bar for android

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to ProgressBar

Toothyprogress
A polyline determinated ProgressBar written in Kotlin
Stars: ✭ 56 (-9.68%)
Mutual labels:  widget, progressbar
SyntaxPane
A simple to use Swing JEditorKit component supporting syntax highlighting for various languages. Issue tracker: https://codeberg.org/sciss/SyntaxPane/issues
Stars: ✭ 32 (-48.39%)
Mutual labels:  widget
Form Render
🚴‍♀️ 阿里飞猪 - 很易用的中后台「表单 / 表格 / 图表」解决方案
Stars: ✭ 3,881 (+6159.68%)
Mutual labels:  widget
shell-progressbar
Make a progress bar GUI on terminal platform (Shell script)
Stars: ✭ 39 (-37.1%)
Mutual labels:  progressbar
Autocomplete
Blazing fast and lightweight autocomplete widget without dependencies. Only 1KB gzipped. Demo:
Stars: ✭ 244 (+293.55%)
Mutual labels:  widget
Examples wxWidgets
Shows how to use wxWidgets controls only by programming code (c++17).
Stars: ✭ 116 (+87.1%)
Mutual labels:  progressbar
Toolbarindicator
A toolbar indicator for android, likes twitter's.
Stars: ✭ 227 (+266.13%)
Mutual labels:  widget
wui
Collection of GUI widgets for the web
Stars: ✭ 44 (-29.03%)
Mutual labels:  widget
rater-js
Star rating widget for the browser. Unlimited number of stars. No dependencies. No Jquery required.
Stars: ✭ 66 (+6.45%)
Mutual labels:  widget
MatlabProgressBar
This MATLAB class provides a smart progress bar like tqdm in the command window and is optimized for progress information in simple iterations or large frameworks with full support of parallel parfor loops provided by the MATLAB Parallel Computing Toolbox.
Stars: ✭ 44 (-29.03%)
Mutual labels:  progressbar
book-library
📚 A book library app for both Android & IOS ~ Flutter.dev project in Dart
Stars: ✭ 89 (+43.55%)
Mutual labels:  widget
Finalcut
A text-based widget toolkit
Stars: ✭ 244 (+293.55%)
Mutual labels:  widget
ios-scriptable-tsx
在 vscode 上使用 typescript 和 jsx 开发 ios 小组件的小框架.基于 Scriptable app.
Stars: ✭ 113 (+82.26%)
Mutual labels:  widget
Wiredash Sdk
Interactive user feedback tool for Flutter 🎉
Stars: ✭ 232 (+274.19%)
Mutual labels:  widget
Qt-Timeline-Widget
[Qt控件] 时间轴列表控件
Stars: ✭ 43 (-30.65%)
Mutual labels:  widget
Flutter fluid slider
A fluid design slider that works just like the Slider material widget.
Stars: ✭ 232 (+274.19%)
Mutual labels:  widget
Yii2 Imperavi Widget
Imperavi Redactor widget for Yii 2
Stars: ✭ 250 (+303.23%)
Mutual labels:  widget
yii2-grid-view-library
Highly enhanced GridView widget and grid components for Yii2
Stars: ✭ 57 (-8.06%)
Mutual labels:  widget
instagram-widget-by-wpzoom
The easiest way to add a nice Instagram widget on your WordPress site. It just works!
Stars: ✭ 22 (-64.52%)
Mutual labels:  widget
orderable stack
A Flutter orderable stack widget
Stars: ✭ 83 (+33.87%)
Mutual labels:  widget

ProgressBar

Download API License

Beautiful progress bar for android.

Usage

gradle

implementation 'com.liihuu.widget:progressbar:1.2.0'

xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:gravity="center_horizontal"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:layout_height="match_parent">

    <com.liihuu.progressbar.ProgressBar
        android:id="@+id/progressBar"
        android:layout_marginTop="100dp"
        android:layout_width="match_parent"
        android:layout_height="10dp"
        app:backgroundColor="#d8d8d8"
        app:startFillColor="#505050"
        app:middleFillColor="#B03060"
        app:endFillColor="#e03060"
        app:maxProgress="200"
        app:arrowPointRadius="6dp"/>

    <com.liihuu.progressbar.FloatTextProgressBar
        android:id="@+id/floatTextProgressBar"
        android:layout_width="match_parent"
        android:layout_marginTop="50dp"
        android:layout_height="30dp"
        app:backgroundColor="#d8d8d8"
        app:fillColor="#ff0000"
        app:triangleColor="#ff0000"
        app:rectColor="#ff0000"
        app:maxProgress="200"
        app:textColor="#fff"/>

    <com.liihuu.progressbar.CircleProgressBar
        android:id="@+id/circleProgressBar"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginTop="50dp"
        app:backgroundColor="#d8d8d8"
        app:fillColor="#ff0000"
        app:progressWidth="5dp"
        app:maxProgress="200"
        app:textColor="#505050"/>

    <SeekBar
        android:id="@+id/seekBar"
        android:layout_width="match_parent"
        android:layout_marginTop="100dp"
        android:layout_height="30dp" />
</LinearLayout>

activity

ProgressBar progressBar = findViewById(R.id.progressBar);
progressBar.setProgress(50);
    
FloatTextProgressBar floatTextProgressBar = findViewById(R.id.floatTextProgressBar);
floatTextProgressBar.setProgress(50);
    
CircleProgressBar circleProgressBar = findViewById(R.id.circleProgressBar);
circleProgressBar.setProgress(50);

Screenshots

screenshot

License

Copyright (c) 2017 lihu

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].