Searched refs:indeterminate (Results 1 - 11 of 11) 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/support/wear/src/android/support/wear/widget/
H A DCircularProgressLayoutController.java60 /** Returns true if the progress is shown as an indeterminate spinner. */
70 /** Sets if the progress should be shown as an indeterminate spinner. */
71 void setIndeterminate(boolean indeterminate) { argument
72 if (mIsIndeterminate == indeterminate) {
75 mIsIndeterminate = indeterminate;
105 setIndeterminate(false); // If showing indeterminate progress, stop it
H A DCircularProgressLayout.java48 * <p>Alternatively, this layout can be used to show indeterminate progress by calling {@link
228 * Sets if progress should be shown as an indeterminate spinner.
230 * @param indeterminate {@code true} if indeterminate spinner should be shown, {@code false}
233 public void setIndeterminate(boolean indeterminate) { argument
234 mController.setIndeterminate(indeterminate);
238 * Returns if progress is showing as an indeterminate spinner.
240 * @return {@code true} if indeterminate spinner is shown, {@code false} otherwise.
/frameworks/base/core/java/android/app/
H A DProgressDialog.java136 * @param indeterminate true if the dialog should be {@link #setIndeterminate(boolean)
137 * indeterminate}, false otherwise
141 CharSequence message, boolean indeterminate) {
142 return show(context, title, message, indeterminate, false, null);
151 * @param indeterminate true if the dialog should be {@link #setIndeterminate(boolean)
152 * indeterminate}, false otherwise
158 CharSequence message, boolean indeterminate, boolean cancelable) {
159 return show(context, title, message, indeterminate, cancelable, null);
168 * @param indeterminate true if the dialog should be {@link #setIndeterminate(boolean)
169 * indeterminate}, fals
140 show(Context context, CharSequence title, CharSequence message, boolean indeterminate) argument
157 show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable) argument
176 show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable, OnCancelListener cancelListener) argument
436 setIndeterminate(boolean indeterminate) argument
[all...]
H A DActivity.java6040 * Sets the visibility of the indeterminate progress bar in the title.
6055 * Sets whether the horizontal progress bar in the title should be indeterminate (the circular
6056 * is always indeterminate).
6061 * @param indeterminate Whether the horizontal progress bar should be indeterminate.
6065 public final void setProgressBarIndeterminate(boolean indeterminate) { argument
6067 indeterminate ? Window.PROGRESS_INDETERMINATE_ON
6343 * behind the frontmost Activity will be indeterminate.
H A DNotification.java964 * {@link #extras} key: whether the progress bar is indeterminate, supplied to
2561 // many apps use max 0 for 'indeterminate'; not complete
3185 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
3188 mN.extras.putBoolean(EXTRA_PROGRESS_INDETERMINATE, indeterminate);
/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
H A DPhotoViewFragment.java237 final ProgressBar indeterminate =
241 mPhotoProgressBar = new ProgressBarWrapper(determinate, indeterminate, true);
/frameworks/base/core/java/android/widget/
H A DProgressBar.java69 * Progress bar supports two modes to represent progress: determinate, and indeterminate. For
70 * a visual overview of the difference between determinate and indeterminate progress modes, see
79 * Use indeterminate mode for the progress bar when you do not know how long an
83 * The following example shows an indeterminate progress bar:
525 * <li>indeterminate = false</li>
545 * <p>Indicate whether this progress bar is in indeterminate mode.</p>
547 * @return true if the progress bar is in indeterminate mode
555 * <p>Change the indeterminate mode for this progress bar. In indeterminate
559 * If this progress bar's style only supports indeterminate mod
565 setIndeterminate(boolean indeterminate) argument
[all...]
H A DRemoteViews.java2941 * If indeterminate is true, then the values for max and progress are ignored.
2946 * @param indeterminate True if the progress bar is indeterminate,
2950 boolean indeterminate) {
2951 setBoolean(viewId, "setIndeterminate", indeterminate);
2952 if (!indeterminate) {
2949 setProgressBar(int viewId, int max, int progress, boolean indeterminate) argument
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatActivity.java313 public void setSupportProgressBarIndeterminate(boolean indeterminate) { argument
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java319 * Notification extras key: whether the progress bar is indeterminate, supplied to
855 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
858 mProgressIndeterminate = indeterminate;

Completed in 560 milliseconds