HomeSort by relevance Sort by last modified time
    Searched defs:progressBar (Results 1 - 25 of 28) sorted by null

1 2

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ProgressBarTest.java 3 import android.widget.ProgressBar;
19 private ProgressBar progressBar;
23 progressBar = new ProgressBar(null);
28 assertThat(progressBar.getMax(), equalTo(100));
34 progressBar.setMax(max);
35 assertThat(progressBar.getMax(), equalTo(max));
42 progressBar.setProgress(progress);
43 assertThat(progressBar.getProgress(), equalTo(progress))
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ProgressCategory.java 59 final View progressBar = view.findViewById(R.id.scanning_progress);
63 progressBar.setVisibility(mProgress ? View.VISIBLE : View.GONE);
  /cts/tests/tests/widget/src/android/widget/cts/
ProgressBarTest.java 37 import android.widget.ProgressBar;
50 new ProgressBar(mContext);
52 new ProgressBar(mContext, null);
54 new ProgressBar(mContext, null, android.R.attr.progressBarStyle);
58 ProgressBar progressBar = new ProgressBar(mContext);
59 assertTrue(progressBar.isIndeterminate());
61 progressBar.setIndeterminate(true);
62 assertTrue(progressBar.isIndeterminate())
    [all...]
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
ConstantWithConditionalTest.java 40 assertTrue(mBinder.progressBar.isIndeterminate());
45 assertFalse(mBinder.progressBar.isIndeterminate());
52 assertTrue(mBinder.progressBar.isIndeterminate());
57 assertFalse(mBinder.progressBar.isIndeterminate());
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
BrowseErrorActivity.java 26 import android.widget.ProgressBar;
79 ProgressBar progressBar = new ProgressBar(container.getContext());
83 progressBar.setLayoutParams(layoutParams);
85 return progressBar;
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
BrowseErrorActivity.java 25 import android.widget.ProgressBar;
78 ProgressBar progressBar = new ProgressBar(container.getContext());
81 progressBar.setLayoutParams(layoutParams);
83 return progressBar;
  /frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
SetupWizardListLayoutTests.java 26 import android.widget.ProgressBar;
75 final View progressBar = layout.findViewById(R.id.suw_layout_progress);
77 progressBar instanceof ProgressBar && progressBar.getVisibility() == View.VISIBLE);
SetupWizardLayoutTests.java 27 import android.widget.ProgressBar;
121 final View progressBar = layout.findViewById(R.id.suw_layout_progress);
123 progressBar instanceof ProgressBar && progressBar.getVisibility() == View.VISIBLE);
133 final View progressBar = layout.findViewById(R.id.suw_layout_progress);
135 progressBar == null || progressBar.getVisibility() != View.VISIBLE);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
WordListPreference.java 218 final DictionaryDownloadProgressBar progressBar =
221 progressBar.setIds(mClientId, mWordlistId);
222 progressBar.setMax(mFilesize);
226 progressBar.setVisibility(showProgressBar ? View.VISIBLE : View.INVISIBLE);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ManageCachePage.java 29 import android.widget.ProgressBar;
365 ProgressBar progressBar = (ProgressBar) mFooterContent.findViewById(R.id.progress);
367 progressBar.setMax(PROGRESS_BAR_MAX);
375 progressBar.setProgress(0);
376 progressBar.setSecondaryProgress(0);
382 progressBar.setProgress((int) (usedBytes * PROGRESS_BAR_MAX / totalBytes));
383 progressBar.setSecondaryProgress(
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/internal/
MigratorFrame.java 91 JProgressBar progressBar;
164 slh.placeBelow(otherLabel, progressBar, 0, BASIC_PADDING);
184 getContentPane().add(progressBar);
267 progressBar = new JProgressBar(0, 1);
268 progressBar.setPreferredSize(new java.awt.Dimension((int) (X_SIZE * 0.8), 5));
269 progressBar.setVisible(false);
  /frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
R$id.class 
  /cts/tests/tests/app/src/android/app/cts/
ProgressDialogTest.java 31 import android.widget.ProgressBar;
44 private ProgressBar mProgressBar;
281 ProgressBar progressBar = (ProgressBar) w.findViewById(android.R.id.progress);
284 mActualDrawable = progressBar.getProgressDrawable();
287 mActualDrawableNull = progressBar.getProgressDrawable();
296 mProgressBar = (ProgressBar) w.findViewById(android.R.id.progress);
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
Card.java 29 import android.widget.ProgressBar;
592 ProgressBar progressBar =
593 (ProgressBar) progressView.findViewById(R.id.card_progress);
596 progressBar.setMax(mCard.mCardProgress.maxValue);
597 progressBar.setProgress(0);
644 private ProgressBar progressBar = null;
659 * @see android.widget.ProgressBar#setProgress(int)
663 final ProgressBar bar = getProgressBar()
    [all...]
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
Card.java 29 import android.widget.ProgressBar;
592 ProgressBar progressBar =
593 (ProgressBar) progressView.findViewById(R.id.card_progress);
596 progressBar.setMax(mCard.mCardProgress.maxValue);
597 progressBar.setProgress(0);
644 private ProgressBar progressBar = null;
659 * @see android.widget.ProgressBar#setProgress(int)
663 final ProgressBar bar = getProgressBar()
    [all...]
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
SetupWizardLayout.java 406 final View progressBar = findViewById(R.id.suw_layout_progress);
407 return progressBar != null && progressBar.getVisibility() == View.VISIBLE;
411 final View progressBar = findViewById(R.id.suw_layout_progress);
412 if (progressBar != null) {
413 progressBar.setVisibility(View.VISIBLE);
423 final View progressBar = findViewById(R.id.suw_layout_progress);
424 if (progressBar != null) {
425 progressBar.setVisibility(View.GONE);
  /packages/apps/UnifiedEmail/src/com/android/mail/photo/
MailPhotoViewController.java 278 final ProgressBarWrapper progressBar = fragment.getPhotoProgressBar();
284 progressBar.setMax(attachment.size);
285 progressBar.setProgress(attachment.downloadedSize);
286 progressBar.setIndeterminate(false);
288 progressBar.setIndeterminate(true);
304 progressBar.setVisibility(View.GONE);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
SelectPrinterActivity.java 326 View progressBar = findViewById(R.id.progress_bar);
329 progressBar.setVisibility(View.VISIBLE);
332 progressBar.setVisibility(View.GONE);
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
ExtendedBitmapDrawable.java 128 if (mOpts.progressBar != null) {
130 mProgress = new Progress(mOpts.progressBar.getConstantState().newDrawable(mResources), mResources,
678 * {@link #progressBar}. Optionally set {@link #placeholderAnimationDuration}.
766 public Drawable progressBar;
779 final Drawable progressBar) {
782 this.progressBar = progressBar;
  /prebuilts/tools/common/fest/
fest-swing-1.2.1.jar 
  /packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java     [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
jdepend-2.9.jar 
findbugs.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 
  /prebuilts/devtools/tools/lib/
sdkuilib.jar 

Completed in 1958 milliseconds

1 2