Home
last modified time | relevance | path

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

/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DSurfaceSyncGroupTests.java106 View backgroundView = mActivity.getBackgroundView(); in testOverlappingSyncsEnsureOrder_WhenTimeout() local
107 firstSsg.add(backgroundView.getRootSurfaceControl(), in testOverlappingSyncsEnsureOrder_WhenTimeout()
108 () -> mActivity.runOnUiThread(() -> backgroundView.setBackgroundColor(Color.RED))); in testOverlappingSyncsEnsureOrder_WhenTimeout()
155 View backgroundView = mActivity.getBackgroundView(); in testOverlappingSyncsEnsureOrder_WhileHoldingTransaction() local
156 firstSsg.add(backgroundView.getRootSurfaceControl(), in testOverlappingSyncsEnsureOrder_WhileHoldingTransaction()
157 () -> mActivity.runOnUiThread(() -> backgroundView.setBackgroundColor(Color.RED))); in testOverlappingSyncsEnsureOrder_WhileHoldingTransaction()
170 View backgroundView = mActivity.getBackgroundView(); in addSecondSyncGroup() local
171 ViewTreeObserver viewTreeObserver = backgroundView.getViewTreeObserver(); in addSecondSyncGroup()
173 surfaceSyncGroup.add(backgroundView.getRootSurfaceControl(), in addSecondSyncGroup()
175 () -> backgroundView.setBackgroundColor(Color.BLUE))); in addSecondSyncGroup()
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DGhostedViewTransitionAnimatorController.kt91 private var backgroundView: FrameLayout? = null variable in com.android.systemui.animation.GhostedViewTransitionAnimatorController
233 backgroundView = in onTransitionAnimationStart()
240 backgroundView?.background = backgroundDrawable in onTransitionAnimationStart()
275 val backgroundView = this.backgroundView!! in onTransitionAnimationProgress() constant
287 backgroundView.visibility = View.INVISIBLE in onTransitionAnimationProgress()
296 backgroundView.visibility = View.VISIBLE in onTransitionAnimationProgress()
335 backgroundView.top = topWithInsets - transitionContainerLocation[1] in onTransitionAnimationProgress()
336 backgroundView.bottom = bottomWithInsets - transitionContainerLocation[1] in onTransitionAnimationProgress()
337 backgroundView.left = leftWithInsets - transitionContainerLocation[0] in onTransitionAnimationProgress()
338 backgroundView.right = rightWithInsets - transitionContainerLocation[0] in onTransitionAnimationProgress()
[all …]
/frameworks/base/tests/graphics/HwAccelerationTest/src/com/android/test/hwui/
DBackdropBlurActivity.java44 final View backgroundView = new View(this); in onCreate() local
45 backgroundView.setBackgroundResource(R.drawable.robot_repeated); in onCreate()
46 innerFrame.addView(backgroundView, ViewGroup.LayoutParams.MATCH_PARENT, 10000); in onCreate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/
DOngoingCallController.kt159 val backgroundView: ChipBackgroundContainer? = in <lambda>() constant
161 backgroundView?.maxHeightFetcher = { statusBarWindowController.statusBarHeight } in <lambda>()
273 val backgroundView = in <lambda>() constant
276 if (currentChipView != null && backgroundView != null && intent != null) { in <lambda>()
282 backgroundView, in <lambda>()
/frameworks/base/packages/SettingsLib/IllustrationPreference/src/com/android/settingslib/widget/
DIllustrationPreference.java125 final ImageView backgroundView = in onBindViewHolder() local
148 handleImageFrameMaxHeight(backgroundView, illustrationView); in onBindViewHolder()
394 private void handleImageFrameMaxHeight(ImageView backgroundView, ImageView illustrationView) {
399 final Resources res = backgroundView.getResources();
403 backgroundView.setMaxHeight(restrictedMaxHeight);
/frameworks/base/tests/graphics/SilkFX/src/com/android/test/silkfx/materials/
DGlassActivity.kt37 lateinit var backgroundView: ImageView in <lambda>() variable in com.android.test.silkfx.materials.GlassActivity
55 backgroundView.setImageBitmap(background) in <lambda>()
65 backgroundView = requireViewById(R.id.background) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/
DCallChipViewModel.kt71 val backgroundView = in <lambda>() constant
80 backgroundView, in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPhoneStatusBarTransitions.java42 public PhoneStatusBarTransitions(PhoneStatusBarView statusBarView, View backgroundView) { in PhoneStatusBarTransitions() argument
43 super(backgroundView, R.drawable.status_background); in PhoneStatusBarTransitions()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/
DBiometricViewBinder.kt81 backgroundView: View, in <lambda>()
113 backgroundView in <lambda>()
280 backgroundView.setOnClickListener { in <lambda>()
380 backgroundView.setOnClickListener(null) in <lambda>()
381 backgroundView.importantForAccessibility = in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DPhoneStatusBarTransitionsTest.kt55 private val backgroundView = mock<View>().apply { whenever(this.context).thenReturn(mContext) } in <lambda>() constant in com.android.systemui.statusbar.phone.PhoneStatusBarTransitionsTest
58 PhoneStatusBarTransitions(statusBarView, backgroundView).also { in <lambda>()
/frameworks/base/core/java/android/widget/
DPopupWindow.java1530 final PopupBackgroundView backgroundView = new PopupBackgroundView(mContext); in createBackgroundView() local
1533 backgroundView.addView(contentView, listParams); in createBackgroundView()
1535 return backgroundView; in createBackgroundView()