Searched defs:indeterminate (Results 1 - 10 of 10) 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.java5158 * Sets the visibility of the indeterminate progress bar in the title.
5171 * Sets whether the horizontal progress bar in the title should be indeterminate (the circular
5172 * is always indeterminate).
5177 * @param indeterminate Whether the horizontal progress bar should be indeterminate.
5179 public final void setProgressBarIndeterminate(boolean indeterminate) { argument
5181 indeterminate ? Window.PROGRESS_INDETERMINATE_ON
5449 * behind the frontmost Activity will be indeterminate.
H A DNotification.java765 * {@link #extras} key: whether the progress bar is indeterminate, supplied to
2204 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
2207 mProgressIndeterminate = indeterminate;
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarActivity.java316 * Sets the visibility of the indeterminate progress bar in the title.
330 * Sets whether the horizontal progress bar in the title should be indeterminate (the
331 * circular is always indeterminate).
336 * @param indeterminate Whether the horizontal progress bar should be indeterminate.
338 public void setSupportProgressBarIndeterminate(boolean indeterminate) { argument
339 getDelegate().setSupportProgressBarIndeterminate(indeterminate);
H A DActionBarActivityDelegate.java218 abstract void setSupportProgressBarIndeterminate(boolean indeterminate); argument
H A DActionBarActivityDelegateBase.java689 void setSupportProgressBarIndeterminate(boolean indeterminate) { argument
/frameworks/base/core/java/android/widget/
H A DProgressBar.java75 * A progress bar can also be made indeterminate. In indeterminate mode, the
77 * applications when the length of the task is unknown. The indeterminate progress bar can be either
120 * By default, the progress bar is a spinning wheel (an indeterminate indicator). To change to a
491 * <li>indeterminate = false</li>
510 * <p>Indicate whether this progress bar is in indeterminate mode.</p>
512 * @return true if the progress bar is in indeterminate mode
520 * <p>Change the indeterminate mode for this progress bar. In indeterminate
524 * If this progress bar's style only supports indeterminate mod
530 setIndeterminate(boolean indeterminate) argument
[all...]
H A DRemoteViews.java2118 * If indeterminate is true, then the values for max and progress are ignored.
2123 * @param indeterminate True if the progress bar is indeterminate,
2127 boolean indeterminate) {
2128 setBoolean(viewId, "setIndeterminate", indeterminate);
2129 if (!indeterminate) {
2126 setProgressBar(int viewId, int max, int progress, boolean indeterminate) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java272 * Notification extras key: whether the progress bar is indeterminate, supplied to
1030 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
1033 mProgressIndeterminate = indeterminate;

Completed in 2705 milliseconds