Home
last modified time | relevance | path

Searched refs:progressBar (Results 1 – 8 of 8) sorted by relevance

/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
DConstantWithConditionalTest.java40 assertTrue(mBinder.progressBar.isIndeterminate()); in testValues()
45 assertFalse(mBinder.progressBar.isIndeterminate()); in testValues()
52 assertTrue(mBinder.progressBar.isIndeterminate()); in testValues()
57 assertFalse(mBinder.progressBar.isIndeterminate()); in testValues()
/frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
DSetupWizardLayoutTests.java121 final View progressBar = layout.findViewById(R.id.suw_layout_progress); in testShowProgressBar() local
123 progressBar instanceof ProgressBar && progressBar.getVisibility() == View.VISIBLE); in testShowProgressBar()
133 final View progressBar = layout.findViewById(R.id.suw_layout_progress); in testHideProgressBar() local
135 progressBar == null || progressBar.getVisibility() != View.VISIBLE); in testHideProgressBar()
DSetupWizardListLayoutTests.java75 final View progressBar = layout.findViewById(R.id.suw_layout_progress); in testShowProgressBar() local
77 progressBar instanceof ProgressBar && progressBar.getVisibility() == View.VISIBLE); in testShowProgressBar()
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
DSetupWizardLayout.java406 final View progressBar = findViewById(R.id.suw_layout_progress); in isProgressBarShown() local
407 return progressBar != null && progressBar.getVisibility() == View.VISIBLE; in isProgressBarShown()
411 final View progressBar = findViewById(R.id.suw_layout_progress); in showProgressBar() local
412 if (progressBar != null) { in showProgressBar()
413 progressBar.setVisibility(View.VISIBLE); in showProgressBar()
423 final View progressBar = findViewById(R.id.suw_layout_progress); in hideProgressBar() local
424 if (progressBar != null) { in hideProgressBar()
425 progressBar.setVisibility(View.GONE); in hideProgressBar()
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
DExtendedBitmapDrawable.java128 if (mOpts.progressBar != null) { in onOptsChanged()
130 … mProgress = new Progress(mOpts.progressBar.getConstantState().newDrawable(mResources), mResources, in onOptsChanged()
766 public Drawable progressBar; field in ExtendedBitmapDrawable.ExtendedOptions
779 final Drawable progressBar) { in ExtendedOptions() argument
782 this.progressBar = progressBar; in ExtendedOptions()
/frameworks/base/docs/html/guide/topics/ui/layout/
Dlistview.jd92 ProgressBar progressBar = new ProgressBar(this);
93 progressBar.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
95 progressBar.setIndeterminate(true);
96 getListView().setEmptyView(progressBar);
100 root.addView(progressBar);
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
DR$id.classR.java package com.android.layoutlib.test.myapplication public final com.android. ...
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
DSelectPrinterActivity.java326 View progressBar = findViewById(R.id.progress_bar); in updateEmptyView() local
329 progressBar.setVisibility(View.VISIBLE); in updateEmptyView()
332 progressBar.setVisibility(View.GONE); in updateEmptyView()