All Projects → nipun-birla → Boxloaderview

nipun-birla / Boxloaderview

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Boxloaderview

Ng Http Loader
🍡 Smart angular HTTP interceptor - Intercepts automagically HTTP requests and shows a spinkit spinner / loader / progress bar
Stars: ✭ 327 (+330.26%)
Mutual labels:  loader, progress-bar
Alive Progress
A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!
Stars: ✭ 2,940 (+3768.42%)
Mutual labels:  animated, progress-bar
Vue Wait
Complex Loader and Progress Management for Vue/Vuex and Nuxt Applications
Stars: ✭ 1,869 (+2359.21%)
Mutual labels:  loader, progress-bar
rprogress
React ajax loader progress bar with clear API
Stars: ✭ 12 (-84.21%)
Mutual labels:  progress-bar, loader
react-native-animated-bar
Responsive React Native Animated Progress Bar
Stars: ✭ 46 (-39.47%)
Mutual labels:  progress-bar, animated
Loaders
Process dialogs, loading bars, etc.
Stars: ✭ 23 (-69.74%)
Mutual labels:  progress-bar, loader
react-skeleton-loader
A react helper for skeleton loaders
Stars: ✭ 61 (-19.74%)
Mutual labels:  loader, animated
Rsup Progress
❤️ A simple progress bar with promises support
Stars: ✭ 290 (+281.58%)
Mutual labels:  loader, progress-bar
Ngx Ui Loader
Multiple Loaders / spinners and Progress bar for Angular 5, 6, 7 and 8+
Stars: ✭ 368 (+384.21%)
Mutual labels:  loader, progress-bar
Antsword Loader
AntSword 加载器
Stars: ✭ 1,124 (+1378.95%)
Mutual labels:  loader
Retroprogress
💈 Retro looking progress bar straight from the 90s
Stars: ✭ 71 (-6.58%)
Mutual labels:  progress-bar
React Native Hole View
✂️ React-Native component to cut a touch-through holes anywhere you want. Perfect solution for tutorial overlay
Stars: ✭ 61 (-19.74%)
Mutual labels:  animated
Mkringprogressview
⭕️ Ring progress view similar to Activity app on Apple Watch
Stars: ✭ 1,140 (+1400%)
Mutual labels:  progress-bar
Http Vue Loader
load .vue files from your html/js
Stars: ✭ 1,172 (+1442.11%)
Mutual labels:  loader
Dotsloaderview
Simple dots loader view
Stars: ✭ 63 (-17.11%)
Mutual labels:  loader
Node Status
Nodejs stdout status and progress bar. Multi-item, various display types.
Stars: ✭ 71 (-6.58%)
Mutual labels:  progress-bar
Animatedpencil
Animated Pencil Action view for Android
Stars: ✭ 61 (-19.74%)
Mutual labels:  animated
Fiftyshadesof
An elegant context-care loading placeholder for Android
Stars: ✭ 1,110 (+1360.53%)
Mutual labels:  loader
Circle Progress View
Animated circular progress view for Android
Stars: ✭ 1,185 (+1459.21%)
Mutual labels:  progress-bar
Static Progress Bar
Custom static progress bar for Android where you can set your own shape and color.
Stars: ✭ 71 (-6.58%)
Mutual labels:  progress-bar

BoxLoaderView Android Arsenal

Screenshot

Overview

A clean and easy to use Animated Progress View in a Square .

Usage

Add dependency in your build.gradle(app)

dependencies {
    compile 'com.github.nipun-birla:BoxLoaderView:0.0.1'
}

Put BoxLoaderView in your layout as required :

<com.nipunbirla.boxloader.BoxLoaderView
            android:id="@+id/progress"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:strokeColor="#995876"
            app:loaderColor="#C67890"
            app:strokeWidth="20"
            app:speed="10"/>

Find view in your activity as :

BoxLoaderView boxLoader = findViewById(R.id.progress);

To set stroke/background color :

boxLoader.setStrokeColor(Color.WHITE);

To set Loader color :

    mLoader.setLoaderColor(Color.BLUE);

To set stroke width/outer margin :

    mLoader.setStrokeWidth(20);

To set Loader speed :

    mLoader.setSpeed(20);

Defaults

Loader Color : BLUE
Stroke/Background Color : WHITE
Speed : 10
Width : 20

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].