Searched refs:progress (Results 26 - 36 of 36) sorted by relevance

12

/frameworks/base/core/java/android/app/
H A DNotification.java109 * <li>Notification of an ongoing file download (with a progress bar, for example) should be stamped when the download started.</li>
1089 * Set the progress this notification represents.
1093 public Builder setProgress(int max, int progress, boolean indeterminate) { argument
1095 mProgress = progress;
1447 R.id.progress, mProgressMax, mProgress, mProgressIndeterminate);
1448 contentView.setViewVisibility(R.id.progress, View.VISIBLE);
1451 contentView.setViewVisibility(R.id.progress, View.GONE);
H A DActivity.java4477 * Sets the visibility of the progress bar in the title.
4479 * In order for the progress bar to be shown, the feature must be requested
4482 * @param visible Whether to show the progress bars in the title.
4490 * Sets the visibility of the indeterminate progress bar in the title.
4492 * In order for the progress bar to be shown, the feature must be requested
4495 * @param visible Whether to show the progress bars in the title.
4503 * Sets whether the horizontal progress bar in the title should be indeterminate (the circular
4506 * In order for the progress bar to be shown, the feature must be requested
4509 * @param indeterminate Whether the horizontal progress bar should be indeterminate.
4517 * Sets the progress fo
4526 setProgress(int progress) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DMediaController.java45 * buttons like "Play/Pause", "Rewind", "Fast Forward" and a progress
343 // cause the progress bar to be updated even if mShowing
345 // paused with the progress bar showing the user hits play.
538 // By removing these pending progress messages we make sure
539 // that a) we won't update the progress while the user adjusts
546 public void onProgressChanged(SeekBar bar, int progress, boolean fromuser) {
549 // the progress bar's position.
554 long newposition = (duration * progress) / 1000L;
566 // Ensure that progress is properly updated in the future,
H A DRemoteViews.java1742 * If indeterminate is true, then the values for max and progress are ignored.
1745 * @param max The 100% value for the progress bar
1746 * @param progress The current value of the progress bar.
1747 * @param indeterminate True if the progress bar is indeterminate,
1750 public void setProgressBar(int viewId, int max, int progress, argument
1755 setInt(viewId, "setProgress", progress);
/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteChooserDialogFragment.java668 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { argument
669 changeVolume(progress);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
H A DVideoEditorAPITest.java316 public void onProgress(int progress) {
317 Log.i("WaveformData","progress=" +progress);
318 progressWaveform[i++] = progress;
934 public void onProgress(Object item, int action, int progress) {
935 progressUpdate[i++] = progress;
944 public void onProgress(int progress) {
945 Log.i("AudioWaveformData","progress=" +progress);
946 progressWaveform[i++] = progress;
[all...]
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java67 /** Send progress to listeners no more often than this (in ms). */
87 * @param progress the approximate percentage of the
91 public void onProgress(int progress); argument
130 * the thread while this function is in progress will result in a
135 * @param listener an object to receive periodic progress
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbStorageActivity.java132 mProgressBar = (ProgressBar) findViewById(com.android.internal.R.id.progress);
/frameworks/base/core/java/android/view/
H A DVolumePanel.java407 /** Update the mute and progress state of a slider */
578 // get max volume for progress bar
610 * Rescale the UI control so the progress bar doesn't go all
634 * Rescale the UI control so the progress bar doesn't go all
907 public void onProgressChanged(SeekBar seekBar, int progress, argument
912 if (getStreamVolume(sc.streamType) != progress) {
913 setStreamVolume(sc.streamType, progress, 0);
928 // progress of the slider isn't being tracked anymore, adjust the slider to the last
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DTestShellActivity.java203 int progress = (int)(ratio * Window.PROGRESS_END);
204 getWindow().setFeatureInt(Window.FEATURE_PROGRESS, progress);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java1265 * Updates the progress bars that are shown in the title bar.
1273 * progress (if {@link Window#PROGRESS_END} is given,
1274 * the progress bar widgets in the title will be hidden after an
1278 * secondary progress (if
1280 * progress bar widgets will still be shown with the secondary
1281 * progress bar will be completely filled in.)
1310 // We want to set the progress value before testing for visibility
1311 // so that when the progress bar becomes visible again, it has the
1334 // Only show the progress bars if the primary progress i
[all...]

Completed in 352 milliseconds

12