Home
last modified time | relevance | path

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

/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
H A DSplashScreenExitAnimation.java68 private final SplashScreenView mSplashScreenView; field in SplashScreenExitAnimation
85 mSplashScreenView = view; in SplashScreenExitAnimation()
132 final int globalHeight = mSplashScreenView.getHeight(); in createAnimator()
135 final int halfWidth = mSplashScreenView.getWidth() / 2; in createAnimator()
156 mSplashScreenView.addView(occludeHoleView, params); in createAnimator()
254 || !mSplashScreenView.isAttachedToWindow()) { in onAnimationProgress()
286 if (mSplashScreenView.isAttachedToWindow()) { in finish()
312 if (mSplashScreenView.isAttachedToWindow()) { in reset()
313 mSplashScreenView.setVisibility(GONE); in reset()
349 final View iconView = mSplashScreenView.getIconView(); in onFadeOutProgress()
[all …]
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/draganddrop/
H A DDropZoneView.java110 private ImageView mSplashScreenView; field in DropZoneView
140 mSplashScreenView = new ImageView(context); in DropZoneView()
141 mSplashScreenView.setScaleType(ImageView.ScaleType.CENTER); in DropZoneView()
145 mSplashScreenView.setBackgroundDrawable(mSplashBackgroundDrawable); in DropZoneView()
146 addView(mSplashScreenView, new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, in DropZoneView()
148 mSplashScreenView.setAlpha(0f); in DropZoneView()
183 ((LayoutParams) mSplashScreenView.getLayoutParams()).bottomMargin = (int) bottom; in setBottomInset()
192 mSplashScreenView.setImageDrawable(appIcon); in setAppInfo()
248 mSplashScreenView.animate().alpha(mShowingSplash ? 1f : 0f).start(); in animateSplashToState()