Searched refs:indeterminate (Results 1 - 9 of 9) sorted by relevance

/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DProgressBarWrapper.java26 * gracefully switching back and forth between indeterminate and determinate
35 ProgressBar indeterminate, boolean isIndeterminate) {
37 mIndeterminate = indeterminate;
34 ProgressBarWrapper(ProgressBar determinate, ProgressBar indeterminate, boolean isIndeterminate) argument
/frameworks/base/core/java/android/app/
H A DProgressDialog.java98 CharSequence message, boolean indeterminate) {
99 return show(context, title, message, indeterminate, false, null);
103 CharSequence message, boolean indeterminate, boolean cancelable) {
104 return show(context, title, message, indeterminate, cancelable, null);
108 CharSequence message, boolean indeterminate,
113 dialog.setIndeterminate(indeterminate);
295 public void setIndeterminate(boolean indeterminate) { argument
297 mProgress.setIndeterminate(indeterminate);
299 mIndeterminate = indeterminate;
97 show(Context context, CharSequence title, CharSequence message, boolean indeterminate) argument
102 show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable) argument
107 show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable, OnCancelListener cancelListener) argument
H A DActivity.java5376 * Sets the visibility of the indeterminate progress bar in the title.
5389 * Sets whether the horizontal progress bar in the title should be indeterminate (the circular
5390 * is always indeterminate).
5395 * @param indeterminate Whether the horizontal progress bar should be indeterminate.
5397 public final void setProgressBarIndeterminate(boolean indeterminate) { argument
5399 indeterminate ? Window.PROGRESS_INDETERMINATE_ON
5662 * behind the frontmost Activity will be indeterminate.
H A DNotification.java781 * {@link #extras} key: whether the progress bar is indeterminate, supplied to
2345 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
2348 mProgressIndeterminate = indeterminate;
/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
H A DPhotoViewFragment.java234 final ProgressBar indeterminate =
238 mPhotoProgressBar = new ProgressBarWrapper(determinate, indeterminate, true);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatActivity.java258 public void setSupportProgressBarIndeterminate(boolean indeterminate) { argument
/frameworks/base/core/java/android/widget/
H A DProgressBar.java77 * A progress bar can also be made indeterminate. In indeterminate mode, the
79 * applications when the length of the task is unknown. The indeterminate progress bar can be either
122 * By default, the progress bar is a spinning wheel (an indeterminate indicator). To change to a
550 * <li>indeterminate = false</li>
569 * <p>Indicate whether this progress bar is in indeterminate mode.</p>
571 * @return true if the progress bar is in indeterminate mode
579 * <p>Change the indeterminate mode for this progress bar. In indeterminate
583 * If this progress bar's style only supports indeterminate mod
589 setIndeterminate(boolean indeterminate) argument
[all...]
H A DRemoteViews.java2250 * If indeterminate is true, then the values for max and progress are ignored.
2255 * @param indeterminate True if the progress bar is indeterminate,
2259 boolean indeterminate) {
2260 setBoolean(viewId, "setIndeterminate", indeterminate);
2261 if (!indeterminate) {
2258 setProgressBar(int viewId, int max, int progress, boolean indeterminate) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java273 * Notification extras key: whether the progress bar is indeterminate, supplied to
1059 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
1062 mProgressIndeterminate = indeterminate;

Completed in 2602 milliseconds