Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/deviceinfo/
DStorageItemPreference.java31 private ProgressBar progressBar; field in StorageItemPreference
53 if (progressBar == null) in updateProgressBar()
57 progressBar.setVisibility(View.GONE); in updateProgressBar()
61 progressBar.setVisibility(View.VISIBLE); in updateProgressBar()
62 progressBar.setMax(PROGRESS_MAX); in updateProgressBar()
63 progressBar.setProgress(progress); in updateProgressBar()
68 progressBar = (ProgressBar) view.findViewById(android.R.id.progress); in onBindViewHolder()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DManageCachePage.java365 ProgressBar progressBar = (ProgressBar) mFooterContent.findViewById(R.id.progress); in refreshCacheStorageInfo() local
367 progressBar.setMax(PROGRESS_BAR_MAX); in refreshCacheStorageInfo()
375 progressBar.setProgress(0); in refreshCacheStorageInfo()
376 progressBar.setSecondaryProgress(0); in refreshCacheStorageInfo()
382 progressBar.setProgress((int) (usedBytes * PROGRESS_BAR_MAX / totalBytes)); in refreshCacheStorageInfo()
383 progressBar.setSecondaryProgress( in refreshCacheStorageInfo()
/packages/apps/UnifiedEmail/src/com/android/mail/photo/
DMailPhotoViewController.java278 final ProgressBarWrapper progressBar = fragment.getPhotoProgressBar(); in updateProgressAndEmptyViews() local
284 progressBar.setMax(attachment.size); in updateProgressAndEmptyViews()
285 progressBar.setProgress(attachment.downloadedSize); in updateProgressAndEmptyViews()
286 progressBar.setIndeterminate(false); in updateProgressAndEmptyViews()
288 progressBar.setIndeterminate(true); in updateProgressAndEmptyViews()
304 progressBar.setVisibility(View.GONE); in updateProgressAndEmptyViews()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DWordListPreference.java218 final DictionaryDownloadProgressBar progressBar = in onBindView() local
221 progressBar.setIds(mClientId, mWordlistId); in onBindView()
222 progressBar.setMax(mFilesize); in onBindView()
226 progressBar.setVisibility(showProgressBar ? View.VISIBLE : View.INVISIBLE); in onBindView()
/packages/apps/Settings/src/com/android/settings/
DProgressCategory.java60 final View progressBar = view.findViewById(R.id.scanning_progress); in onBindViewHolder() local
64 progressBar.setVisibility(mProgress ? View.VISIBLE : View.GONE); in onBindViewHolder()
/packages/apps/Launcher2/src/com/android/launcher2/
DLauncher.java3762 View progressBar = mAppsCustomizeTabHost. in bindAllApplications() local
3764 if (progressBar != null) { in bindAllApplications()
3765 ((ViewGroup)progressBar.getParent()).removeView(progressBar); in bindAllApplications()