Home
last modified time | relevance | path

Searched refs:mBackgroundView (Results 1 – 5 of 5) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DConversationViewProgressController.java47 private View mBackgroundView; field in ConversationViewProgressController
65 mBackgroundView = rootView.findViewById(R.id.background_view); in instantiateProgressIndicators()
80 mBackgroundView.setVisibility(View.VISIBLE); in showLoadingStatus()
119 if (mBackgroundView.getVisibility() == View.VISIBLE) { in dismiss()
133 mBackgroundView.setVisibility(View.GONE); in animateDismiss()
137 Utils.enableHardwareLayer(mBackgroundView); in animateDismiss()
140 animator.setTarget(mBackgroundView); in animateDismiss()
144 mBackgroundView.setVisibility(View.GONE); in animateDismiss()
145 mBackgroundView.setLayerType(View.LAYER_TYPE_NONE, null); in animateDismiss()
/packages/apps/TV/src/com/android/tv/dialog/
DPinDialogFragment.java385 private final TextView mBackgroundView;
408 mBackgroundView = (TextView) view.findViewById(R.id.focused_background);
469 ObjectAnimator.ofFloat(mBackgroundView, "alpha", 0f, 1f));
475 mNumberViews[CURRENT_NUMBER_VIEW_INDEX].setText(mBackgroundView.getText());
477 mBackgroundView.setText("");
487 ObjectAnimator.ofFloat(mBackgroundView, "alpha", 1f, 0f));
599 mBackgroundView.setText(INITIAL_TEXT);
624 mBackgroundView.setText(String.valueOf(mCurrentValue));
627 mBackgroundView.setAlpha(1f);
635 mBackgroundView.setAlpha(0f);
/packages/apps/TV/src/com/android/tv/menu/
DPlayControlsRowView.java41 private View mBackgroundView; field in PlayControlsRowView
97 mBackgroundView = findViewById(R.id.background); in onFinishInflate()
245 mBackgroundView.setEnabled(true); in onAvailabilityChanged()
248 mBackgroundView.setEnabled(false); in onAvailabilityChanged()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
DPinDialogFragment.java347 private final View mBackgroundView;
368 mBackgroundView = view.findViewById(R.id.focused_background);
564 mBackgroundView.setVisibility(View.VISIBLE);
567 mBackgroundView.setVisibility(View.GONE);
/packages/apps/ContactsCommon/src/com/android/contacts/common/dialog/
DCallSubjectDialog.java89 private View mBackgroundView; field in CallSubjectDialog
288 mBackgroundView = findViewById(R.id.call_subject_dialog); in onCreate()
289 mBackgroundView.setOnClickListener(mBackgroundListener); in onCreate()
504 final ViewTreeObserver observer = mBackgroundView.getViewTreeObserver(); in showCallHistory()