Searched refs:progressBar (Results 1 – 8 of 8) sorted by relevance
40 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()
121 final View progressBar = layout.findViewById(R.id.suw_layout_progress); in testShowProgressBar() local123 progressBar instanceof ProgressBar && progressBar.getVisibility() == View.VISIBLE); in testShowProgressBar()133 final View progressBar = layout.findViewById(R.id.suw_layout_progress); in testHideProgressBar() local135 progressBar == null || progressBar.getVisibility() != View.VISIBLE); in testHideProgressBar()
75 final View progressBar = layout.findViewById(R.id.suw_layout_progress); in testShowProgressBar() local77 progressBar instanceof ProgressBar && progressBar.getVisibility() == View.VISIBLE); in testShowProgressBar()
406 final View progressBar = findViewById(R.id.suw_layout_progress); in isProgressBarShown() local407 return progressBar != null && progressBar.getVisibility() == View.VISIBLE; in isProgressBarShown()411 final View progressBar = findViewById(R.id.suw_layout_progress); in showProgressBar() local412 if (progressBar != null) { in showProgressBar()413 progressBar.setVisibility(View.VISIBLE); in showProgressBar()423 final View progressBar = findViewById(R.id.suw_layout_progress); in hideProgressBar() local424 if (progressBar != null) { in hideProgressBar()425 progressBar.setVisibility(View.GONE); in hideProgressBar()
128 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.ExtendedOptions779 final Drawable progressBar) { in ExtendedOptions() argument782 this.progressBar = progressBar; in ExtendedOptions()
92 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);
R.java package com.android.layoutlib.test.myapplication public final com.android. ...
326 View progressBar = findViewById(R.id.progress_bar); in updateEmptyView() local329 progressBar.setVisibility(View.VISIBLE); in updateEmptyView()332 progressBar.setVisibility(View.GONE); in updateEmptyView()