Searched defs:mBackgroundView (Results 1 - 6 of 6) sorted by relevance

/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DOnboardingDemoFragment.java47 private View mBackgroundView; field in class:OnboardingDemoFragment
79 mBackgroundView = layoutInflater.inflate(R.layout.onboarding_image, viewGroup, false);
80 return mBackgroundView;
99 animators.add(createFadeInAnimator(mBackgroundView));
H A DOnboardingDemoSupportFragment.java49 private View mBackgroundView; field in class:OnboardingDemoSupportFragment
81 mBackgroundView = layoutInflater.inflate(R.layout.onboarding_image, viewGroup, false);
82 return mBackgroundView;
101 animators.add(createFadeInAnimator(mBackgroundView));
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DOnboardingDemoFragment.java47 private View mBackgroundView; field in class:OnboardingDemoFragment
79 mBackgroundView = layoutInflater.inflate(R.layout.onboarding_image, viewGroup, false);
80 return mBackgroundView;
99 animators.add(createFadeInAnimator(mBackgroundView));
H A DOnboardingDemoSupportFragment.java49 private View mBackgroundView; field in class:OnboardingDemoSupportFragment
81 mBackgroundView = layoutInflater.inflate(R.layout.onboarding_image, viewGroup, false);
82 return mBackgroundView;
101 animators.add(createFadeInAnimator(mBackgroundView));
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java425 private ImageView mBackgroundView; field in class:GlobalScreenshot
452 mBackgroundView = (ImageView) mScreenshotLayout.findViewById(R.id.global_screenshot_background);
746 mBackgroundView.setAlpha(0f);
747 mBackgroundView.setVisibility(View.VISIBLE);
769 mBackgroundView.setAlpha(scaleInterpolator.getInterpolation(t) * BACKGROUND_ALPHA);
785 mBackgroundView.setVisibility(View.GONE);
800 mBackgroundView.setAlpha((1f - t) * BACKGROUND_ALPHA);
838 mBackgroundView.setAlpha((1f - t) * BACKGROUND_ALPHA);
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java149 private View mBackgroundView; field in class:PopupWindow
1241 if (mBackground != null && mBackgroundView != null) {
1247 mBackgroundView.setBackground(mAboveAnchorBackgroundDrawable);
1249 mBackgroundView.setBackground(mBelowAnchorBackgroundDrawable);
1252 mBackgroundView.refreshDrawableState();
1295 mBackgroundView = createBackgroundView(mContentView);
1296 mBackgroundView.setBackground(mBackground);
1298 mBackgroundView = mContentView;
1301 mDecorView = createDecorView(mBackgroundView);
1304 mBackgroundView
[all...]

Completed in 110 milliseconds