Home
last modified time | relevance | path

Searched refs:backgroundView (Results 1 – 10 of 10) sorted by relevance

/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DSurfaceSyncGroupTests.java92 View backgroundView = mActivity.getBackgroundView(); in testOverlappingSyncsEnsureOrder_WhenTimeout() local
93 firstSsg.add(backgroundView.getRootSurfaceControl(), in testOverlappingSyncsEnsureOrder_WhenTimeout()
94 () -> mActivity.runOnUiThread(() -> backgroundView.setBackgroundColor(Color.RED))); in testOverlappingSyncsEnsureOrder_WhenTimeout()
141 View backgroundView = mActivity.getBackgroundView(); in testOverlappingSyncsEnsureOrder_WhileHoldingTransaction() local
142 firstSsg.add(backgroundView.getRootSurfaceControl(), in testOverlappingSyncsEnsureOrder_WhileHoldingTransaction()
143 () -> mActivity.runOnUiThread(() -> backgroundView.setBackgroundColor(Color.RED))); in testOverlappingSyncsEnsureOrder_WhileHoldingTransaction()
156 View backgroundView = mActivity.getBackgroundView(); in addSecondSyncGroup() local
157 ViewTreeObserver viewTreeObserver = backgroundView.getViewTreeObserver(); in addSecondSyncGroup()
159 surfaceSyncGroup.add(backgroundView.getRootSurfaceControl(), in addSecondSyncGroup()
161 () -> backgroundView.setBackgroundColor(Color.BLUE))); in addSecondSyncGroup()
/aosp14/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
H A DGhostedViewLaunchAnimatorController.kt82 private var backgroundView: FrameLayout? = null
209 backgroundView = FrameLayout(launchContainer.context).also {
217 backgroundView?.background = backgroundDrawable
241 val backgroundView = this.backgroundView!! regex
253 backgroundView.visibility = View.INVISIBLE
262 backgroundView.visibility = View.VISIBLE
301 backgroundView.top = topWithInsets - launchContainerLocation[1]
302 backgroundView.bottom = bottomWithInsets - launchContainerLocation[1]
303 backgroundView.left = leftWithInsets - launchContainerLocation[0]
304 backgroundView.right = rightWithInsets - launchContainerLocation[0]
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/
H A DOngoingCallController.kt139 val backgroundView: OngoingCallBackgroundContainer? =
141 backgroundView?.maxHeightFetcher = { statusBarWindowController.get().statusBarHeight }
224 val backgroundView = regex
227 if (currentChipView != null && backgroundView != null && intent != null) {
233 backgroundView,
/aosp14/frameworks/base/packages/SettingsLib/IllustrationPreference/src/com/android/settingslib/widget/
H A DIllustrationPreference.java119 final ImageView backgroundView = in onBindViewHolder() local
139 handleImageFrameMaxHeight(backgroundView, illustrationView); in onBindViewHolder()
342 private void handleImageFrameMaxHeight(ImageView backgroundView, ImageView illustrationView) {
347 final Resources res = backgroundView.getResources();
351 backgroundView.setMaxHeight(restrictedMaxHeight);
/aosp14/frameworks/base/tests/SilkFX/src/com/android/test/silkfx/materials/
H A DGlassActivity.kt37 lateinit var backgroundView: ImageView
55 backgroundView.setImageBitmap(background)
65 backgroundView = requireViewById(R.id.background)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarTransitions.java42 public PhoneStatusBarTransitions(PhoneStatusBarView statusBarView, View backgroundView) { in PhoneStatusBarTransitions() argument
43 super(backgroundView, R.drawable.status_background); in PhoneStatusBarTransitions()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarTransitionsTest.kt55 private val backgroundView = mock<View>().apply { whenever(this.context).thenReturn(mContext) } regex
58 PhoneStatusBarTransitions(statusBarView, backgroundView).also {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/
H A DBiometricViewBinder.kt85 backgroundView: View,
247 backgroundView.setOnClickListener {
356 backgroundView.setOnClickListener(null)
357 backgroundView.importantForAccessibility =
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DAuthBiometricView.java304 void setBackgroundView(View backgroundView) { in setBackgroundView() argument
305 backgroundView.setOnClickListener(mBackgroundClickListener); in setBackgroundView()
/aosp14/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1530 final PopupBackgroundView backgroundView = new PopupBackgroundView(mContext); in createBackgroundView() local
1533 backgroundView.addView(contentView, listParams); in createBackgroundView()
1535 return backgroundView; in createBackgroundView()