Searched defs:mBackgroundView (Results 1 - 10 of 10) sorted by path

/frameworks/base/core/java/android/widget/
H A DPopupWindow.java161 private View mBackgroundView; field in class:PopupWindow
1292 if (mBackground != null && mBackgroundView != null) {
1298 mBackgroundView.setBackground(mAboveAnchorBackgroundDrawable);
1300 mBackgroundView.setBackground(mBelowAnchorBackgroundDrawable);
1303 mBackgroundView.refreshDrawableState();
1346 mBackgroundView = createBackgroundView(mContentView);
1347 mBackgroundView.setBackground(mBackground);
1349 mBackgroundView = mContentView;
1352 mDecorView = createDecorView(mBackgroundView);
1355 mBackgroundView
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java430 private ImageView mBackgroundView; field in class:GlobalScreenshot
457 mBackgroundView = (ImageView) mScreenshotLayout.findViewById(R.id.global_screenshot_background);
751 mBackgroundView.setAlpha(0f);
752 mBackgroundView.setVisibility(View.VISIBLE);
774 mBackgroundView.setAlpha(scaleInterpolator.getInterpolation(t) * BACKGROUND_ALPHA);
790 mBackgroundView.setVisibility(View.GONE);
805 mBackgroundView.setAlpha((1f - t) * BACKGROUND_ALPHA);
843 mBackgroundView.setAlpha((1f - t) * BACKGROUND_ALPHA);
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DOnboardingDemoFragment.java47 private View mBackgroundView; field in class:OnboardingDemoFragment
80 mBackgroundView = layoutInflater.inflate(R.layout.onboarding_image, viewGroup, false);
81 return mBackgroundView;
100 animators.add(createFadeInAnimator(mBackgroundView));
H A DOnboardingDemoSupportFragment.java50 private View mBackgroundView; field in class:OnboardingDemoSupportFragment
83 mBackgroundView = layoutInflater.inflate(R.layout.onboarding_image, viewGroup, false);
84 return mBackgroundView;
103 animators.add(createFadeInAnimator(mBackgroundView));
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DOnboardingDemoFragment.java47 private View mBackgroundView; field in class:OnboardingDemoFragment
80 mBackgroundView = layoutInflater.inflate(R.layout.onboarding_image, viewGroup, false);
81 return mBackgroundView;
100 animators.add(createFadeInAnimator(mBackgroundView));
H A DOnboardingDemoSupportFragment.java50 private View mBackgroundView; field in class:OnboardingDemoSupportFragment
83 mBackgroundView = layoutInflater.inflate(R.layout.onboarding_image, viewGroup, false);
84 return mBackgroundView;
103 animators.add(createFadeInAnimator(mBackgroundView));
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DDetailsFragment.java323 View mBackgroundView; field in class:DetailsFragment
438 mBackgroundView = mRootView.findViewById(R.id.details_background_view);
439 if (mBackgroundView != null) {
440 mBackgroundView.setBackground(mBackgroundDrawable);
823 if (mBackgroundView != null) {
824 mBackgroundView.setBackground(drawable);
H A DDetailsSupportFragment.java326 View mBackgroundView; field in class:DetailsSupportFragment
441 mBackgroundView = mRootView.findViewById(R.id.details_background_view);
442 if (mBackgroundView != null) {
443 mBackgroundView.setBackground(mBackgroundDrawable);
826 if (mBackgroundView != null) {
827 mBackgroundView.setBackground(drawable);
H A DPlaybackFragment.java201 View mBackgroundView; field in class:PlaybackFragment
297 if (mBackgroundView != null) {
298 mBackgroundView.getBackground().setAlpha(alpha);
800 if (mBackgroundView != null) {
812 mBackgroundView.setBackground(new ColorDrawable(color));
854 mBackgroundView = mRootView.findViewById(R.id.playback_fragment_background);
948 mBackgroundView = null;
H A DPlaybackSupportFragment.java204 View mBackgroundView; field in class:PlaybackSupportFragment
300 if (mBackgroundView != null) {
301 mBackgroundView.getBackground().setAlpha(alpha);
803 if (mBackgroundView != null) {
815 mBackgroundView.setBackground(new ColorDrawable(color));
857 mBackgroundView = mRootView.findViewById(R.id.playback_fragment_background);
951 mBackgroundView = null;

Completed in 564 milliseconds