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.java5706 * Sets the visibility of the indeterminate progress bar in the title.
5721 * Sets whether the horizontal progress bar in the title should be indeterminate (the circular
5722 * is always indeterminate).
5727 * @param indeterminate Whether the horizontal progress bar should be indeterminate.
5731 public final void setProgressBarIndeterminate(boolean indeterminate) { argument
5733 indeterminate ? Window.PROGRESS_INDETERMINATE_ON
6003 * behind the frontmost Activity will be indeterminate.
H A DNotification.java867 * {@link #extras} key: whether the progress bar is indeterminate, supplied to
2591 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
2594 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/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatActivity.java306 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
563 * <li>indeterminate = false</li>
582 * <p>Indicate whether this progress bar is in indeterminate mode.</p>
584 * @return true if the progress bar is in indeterminate mode
592 * <p>Change the indeterminate mode for this progress bar. In indeterminate
596 * If this progress bar's style only supports indeterminate mod
602 setIndeterminate(boolean indeterminate) argument
[all...]
H A DRemoteViews.java2638 * If indeterminate is true, then the values for max and progress are ignored.
2643 * @param indeterminate True if the progress bar is indeterminate,
2647 boolean indeterminate) {
2648 setBoolean(viewId, "setIndeterminate", indeterminate);
2649 if (!indeterminate) {
2646 setProgressBar(int viewId, int max, int progress, boolean indeterminate) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java292 * Notification extras key: whether the progress bar is indeterminate, supplied to
1206 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
1209 mProgressIndeterminate = indeterminate;

Completed in 220 milliseconds