@Deprecated
public class ProgressDialogUI
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
ProgressDialogUI.Builder
Deprecated.
It will be no longer available in future releases.
|
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_JUMP_PROGRESS_SIZE
Deprecated.
|
static int |
DEFAULT_MAX_PROGRESS_SIZE
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static ProgressDialogUI.Builder |
getBuilder(android.app.ProgressDialog progressDialog)
Deprecated.
Returns ProgressDialogUI instance builder.
|
int |
getJumpSize()
Deprecated.
|
int |
getMax()
Deprecated.
Return the max value of the progress dialog.
|
int |
getMaxSize()
Deprecated.
|
android.app.ProgressDialog |
getProgressDialog()
Deprecated.
Retrieve the android.app.ProgressDialog instance of the object.
|
void |
incrementProgress()
Deprecated.
Update the progress bar value adding default increment.
|
void |
incrementProgressBy(int increment)
Deprecated.
Update the progress bar value adding the value passed.
|
boolean |
isShowing()
Deprecated.
To know if the dialog is showing
|
void |
setMax(int maxProgress)
Deprecated.
Set the max value of the progress dialog.
|
void |
setMessage(java.lang.String message)
Deprecated.
Update the message to show in the progress dialog.
|
void |
setProgress(int progress)
Deprecated.
Reset the progress value of the progress dialog.
|
void |
setTitle(java.lang.String title)
Deprecated.
Update the title of the progress dialog.
|
void |
show()
Deprecated.
Show the dialog.
|
public static final int DEFAULT_MAX_PROGRESS_SIZE
public static final int DEFAULT_JUMP_PROGRESS_SIZE
public static ProgressDialogUI.Builder getBuilder(android.app.ProgressDialog progressDialog)
progressDialog
- the progress dialog object.public android.app.ProgressDialog getProgressDialog()
public void incrementProgressBy(int increment)
increment
- the increment.public void incrementProgress()
public void show()
public boolean isShowing()
public void setProgress(int progress)
progress
- value to set.public void setMax(int maxProgress)
maxProgress
- max value.public int getMax()
public void setTitle(java.lang.String title)
title
- the string to set as title.public void setMessage(java.lang.String message)
message
- the string message.public int getMaxSize()
public int getJumpSize()