All Projects → Livin21 → Missme

Livin21 / Missme

Licence: mit
Same Old Android Progress Dialog

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Missme

Python Progressbar
Progressbar 2 - A progress bar for Python 2 and Python 3 - "pip install progressbar2"
Stars: ✭ 682 (+1291.84%)
Mutual labels:  library, progress-bar, progressbar
Progressbar
A really basic thread-safe progress bar for Golang applications
Stars: ✭ 2,212 (+4414.29%)
Mutual labels:  library, progress-bar, progressbar
Progress bar
Command-line progress bars and spinners for Elixir.
Stars: ✭ 281 (+473.47%)
Mutual labels:  progress-bar, progressbar
Rsup Progress
❤️ A simple progress bar with promises support
Stars: ✭ 290 (+491.84%)
Mutual labels:  progress-bar, progressbar
Pb
Console progress bar for Rust
Stars: ✭ 402 (+720.41%)
Mutual labels:  progress-bar, progressbar
VHProgressBar
Vartical and Horizontal ProgressBar
Stars: ✭ 23 (-53.06%)
Mutual labels:  progress-bar, progressbar
svelte-progressbar
A multiseries, SVG progressbar component made with Svelte
Stars: ✭ 85 (+73.47%)
Mutual labels:  progress-bar, progressbar
Theglowingloader
TheGlowingLoader is the highly configurable library to indicate progress and is natively created for Android Platform. It is an implementation of a design composed by Shashank Sahay.
Stars: ✭ 379 (+673.47%)
Mutual labels:  library, progressbar
angular-progress-bar
This component allow you to easy incorporate progress-bar to angular/ionic project, providing binding and color options
Stars: ✭ 26 (-46.94%)
Mutual labels:  progress-bar, progressbar
Multiprogressview
📊 An animatable view that depicts multiple progresses over time. Modeled after UIProgressView
Stars: ✭ 614 (+1153.06%)
Mutual labels:  progress-bar, progressbar
Ep
enhance your HTML5 progress bars with minimal effort!
Stars: ✭ 648 (+1222.45%)
Mutual labels:  progress-bar, progressbar
ffmpeg-progressbar-cli
A colored progress bar for FFmpeg.
Stars: ✭ 140 (+185.71%)
Mutual labels:  progress-bar, progressbar
suru
A tqdm-style progress bar in Nim
Stars: ✭ 40 (-18.37%)
Mutual labels:  progress-bar, progressbar
Swiftuix
Extensions and additions to the standard SwiftUI library.
Stars: ✭ 4,087 (+8240.82%)
Mutual labels:  library, progressbar
LineProgressbar
A light weight jquery progressbar plugin
Stars: ✭ 34 (-30.61%)
Mutual labels:  progress-bar, progressbar
Tqdm
A Fast, Extensible Progress Bar for Python and CLI
Stars: ✭ 20,632 (+42006.12%)
Mutual labels:  progress-bar, progressbar
Roundprogresstextview
TextView with Round Pogress
Stars: ✭ 18 (-63.27%)
Mutual labels:  progress-bar, progressbar
DownloadPorgressBar
This is a download progressbar.
Stars: ✭ 19 (-61.22%)
Mutual labels:  progress-bar, progressbar
cli-progress
⌛ easy to use progress-bar for command-line/terminal applications
Stars: ✭ 672 (+1271.43%)
Mutual labels:  progress-bar, progressbar
Node.cli Progress
⌛️ easy to use progress-bar for command-line/terminal applications
Stars: ✭ 466 (+851.02%)
Mutual labels:  progress-bar, progressbar

MissMe

Android ProgressDialog brought back to life

Android Arsenal Download TravisCI Codacy Badge StackShare

MissMe is an Android library written in Kotlin. Android SDK's ProgressDialog class was deprecated in Android Oreo. MissMe's ProgressDialog functions exactly the same and has the same interface.

Screenshots

Horizontal Determinate Horizontal Indeterminate Spinner

Gradle Setup

Add the following dependency to module/build.gradle:

compile 'com.lmntrx.android.library.livin.missme:missme:0.1.5'

How to use it?

Usage is similar to original ProgressDialog

ProgressDialog progressDialog = new ProgressDialog(YourActivity.this);

// Set message
progressDialog.setMessage("Please wait");

// Set cancelable
progressDialog.setCancelable(false);

// Show dialog
progressDialog.show();

// Hide
progressDialog.dismiss();

NB: You must override activity's onBackPressed()

Java8 Implementation:

@Override
public void onBackPressed() {
    progressDialog.onBackPressed(
            () -> {
                YourActivity.super.onBackPressed();
                return null;
            }
    );
}

Kotlin Implementation:

override fun onBackPressed() {
    progressDialog.onBackPressed { super.onBackPressed() }
}
  • Refer Sample App for the full implementation
  • Full documentation can be found here

Buy Me A Coffee

Copyright

 Copyright (c) 2018.  Livin
 
 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].