Home
last modified time | relevance | path

Searched refs:loadingView (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/temporarydisplay/chipbar/
DChipbarCoordinator.kt169 val loadingView = currentView.requireViewById<ImageView>(R.id.loading) in <lambda>() constant
170 loadingView.visibility = isLoading.visibleIfTrue() in <lambda>()
176 if (currentLoadingDetails == null || currentLoadingDetails.loadingView != loadingView) { in <lambda>()
177 val newDetails = createLoadingDetails(loadingView) in <lambda>()
361 private fun createLoadingDetails(loadingView: View): LoadingDetails { in <lambda>()
367 ObjectAnimator.ofFloat(loadingView, View.ROTATION, 0f, 360f).apply { in <lambda>()
372 return LoadingDetails(loadingView, animator) in <lambda>()
376 val loadingView: View, in <lambda>() constant in LoadingDetails
/frameworks/base/core/tests/coretests/src/android/widget/
DRemoteViewsAdapterTest.java98 factory.loadingView.set(createViews("loading")); in onRemoteAdapterConnected_after_metadata_loaded()
115 factory.loadingView.set(createViews("loading")); in viewReplaced_after_mainView_loaded()
149 factory.loadingView.set(createViews("loading")); in notifyDataSetChanged_deferred()
157 factory.loadingView = new LockedValue<>(); in notifyDataSetChanged_deferred()
171 factory.loadingView.set(createViews("refreshed")); in notifyDataSetChanged_deferred()
189 factory.loadingView.set(createViews("loading")); in serviceDisconnected_before_getView()
292 public LockedValue<RemoteViews> loadingView = new LockedValue<>(); field in RemoteViewsAdapterTest.ViewsFactory
331 return loadingView.get(); in getLoadingView()