HomeSort by relevance Sort by last modified time
    Searched refs:mBackgroundView (Results 1 - 15 of 15) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationViewProgressController.java 47 private View mBackgroundView;
65 mBackgroundView = rootView.findViewById(R.id.background_view);
80 mBackgroundView.setVisibility(View.VISIBLE);
119 if (mBackgroundView.getVisibility() == View.VISIBLE) {
133 mBackgroundView.setVisibility(View.GONE);
137 Utils.enableHardwareLayer(mBackgroundView);
140 animator.setTarget(mBackgroundView);
144 mBackgroundView.setVisibility(View.GONE);
145 mBackgroundView.setLayerType(View.LAYER_TYPE_NONE, null);
  /frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
OnboardingDemoFragment.java 48 private View mBackgroundView;
81 mBackgroundView = layoutInflater.inflate(R.layout.onboarding_image, viewGroup, false);
82 return mBackgroundView;
101 animators.add(createFadeInAnimator(mBackgroundView));
OnboardingDemoSupportFragment.java 51 private View mBackgroundView;
84 mBackgroundView = layoutInflater.inflate(R.layout.onboarding_image, viewGroup, false);
85 return mBackgroundView;
104 animators.add(createFadeInAnimator(mBackgroundView));
  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 89 * mBackgroundView: Background View which shows 4 different colored triangles pressing which
92 private View mBackgroundView;
320 mBackgroundView = backgroundView;
339 mBackgroundView.setVisibility(View.VISIBLE);
347 mBackgroundView.setVisibility(View.GONE);
352 mBackgroundView.setVisibility(View.GONE);
358 mBackgroundView.setVisibility(View.GONE);
  /packages/apps/TV/src/com/android/tv/dialog/
PinDialogFragment.java 416 // When the PinNumberPicker has focus, mBackgroundView will show the focused background.
420 private final TextView mBackgroundView;
443 mBackgroundView = (TextView) view.findViewById(R.id.focused_background);
521 ObjectAnimator.ofFloat(mBackgroundView, "alpha", 0f, 1f));
529 mBackgroundView.getText());
532 mBackgroundView.setText("");
548 ObjectAnimator.ofFloat(mBackgroundView, "alpha", 1f, 0f));
669 mBackgroundView.setText(INITIAL_TEXT);
694 mBackgroundView.setText(String.valueOf(mCurrentValue));
697 mBackgroundView.setAlpha(1f)
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/app/
DetailsFragment.java 332 View mBackgroundView;
447 mBackgroundView = mRootView.findViewById(R.id.details_background_view);
448 if (mBackgroundView != null) {
449 mBackgroundView.setBackground(mBackgroundDrawable);
    [all...]
DetailsSupportFragment.java 327 View mBackgroundView;
442 mBackgroundView = mRootView.findViewById(R.id.details_background_view);
443 if (mBackgroundView != null) {
444 mBackgroundView.setBackground(mBackgroundDrawable);
    [all...]
PlaybackFragment.java 214 View mBackgroundView;
310 if (mBackgroundView != null) {
311 mBackgroundView.getBackground().setAlpha(alpha);
815 if (mBackgroundView != null) {
827 mBackgroundView.setBackground(new ColorDrawable(color));
    [all...]
PlaybackSupportFragment.java 207 View mBackgroundView;
303 if (mBackgroundView != null) {
304 mBackgroundView.getBackground().setAlpha(alpha);
808 if (mBackgroundView != null) {
820 mBackgroundView.setBackground(new ColorDrawable(color));
862 mBackgroundView = mRootView.findViewById(R.id.playback_fragment_background)
    [all...]
  /packages/apps/TV/src/com/android/tv/menu/
PlayControlsRowView.java 54 private TextView mBackgroundView;
170 mBackgroundView = (TextView) findViewById(R.id.background);
526 mBackgroundView.setEnabled(true);
527 setTextIfNeeded(mBackgroundView, null);
530 mBackgroundView.setEnabled(false);
531 setTextIfNeeded(mBackgroundView, mUnavailableMessage);
  /frameworks/base/core/java/android/widget/
PopupWindow.java 161 private View mBackgroundView;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/dialog/
CallSubjectDialog.java 89 private View mBackgroundView;
288 mBackgroundView = findViewById(R.id.call_subject_dialog);
289 mBackgroundView.setOnClickListener(mBackgroundListener);
504 final ViewTreeObserver observer = mBackgroundView.getViewTreeObserver();
  /packages/apps/Dialer/java/com/android/contacts/common/dialog/
CallSubjectDialog.java 81 private View mBackgroundView;
293 mBackgroundView = findViewById(R.id.call_subject_dialog);
294 mBackgroundView.setOnClickListener(mBackgroundListener);
446 mBackgroundView,
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
PinDialogFragment.java 392 private final View mBackgroundView;
416 mBackgroundView = view.findViewById(R.id.focused_background);
604 mBackgroundView.setVisibility(View.VISIBLE);
607 mBackgroundView.setVisibility(View.GONE);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 456 private ImageView mBackgroundView;
483 mBackgroundView = (ImageView) mScreenshotLayout.findViewById(R.id.global_screenshot_background);
751 mBackgroundView.setAlpha(0f)
    [all...]

Completed in 626 milliseconds