ShadowProgressDialog.java | 15 private boolean indeterminate; field in class:ShadowProgressDialog 23 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate) { 24 return show(context, title, message, indeterminate, false, null); 28 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable) { 29 return show(context, title, message, indeterminate, cancelable, null); 33 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable, ProgressDialog.OnCancelListener onCancelListener) { 37 progressDialog.setIndeterminate(indeterminate); 46 public void setIndeterminate(boolean indeterminate) { 47 this.indeterminate = indeterminate; [all...] |