Home
last modified time | relevance | path

Searched refs:dialpadKey (Results 1 – 3 of 3) sorted by relevance

/packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
DDialpadView.java140 DialpadKeyButton dialpadKey; in setupKeypad() local
145 dialpadKey = (DialpadKeyButton) findViewById(mButtonIds[i]); in setupKeypad()
146 numberView = (TextView) dialpadKey.findViewById(R.id.dialpad_key_number); in setupKeypad()
147 lettersView = (TextView) dialpadKey.findViewById(R.id.dialpad_key_letters); in setupKeypad()
157 dialpadKey.setContentDescription(numberString); in setupKeypad()
158 dialpadKey.setBackground(rippleBackground); in setupKeypad()
235 final DialpadKeyButton dialpadKey = (DialpadKeyButton) findViewById(mButtonIds[i]); in animateShow() local
237 ViewPropertyAnimator animator = dialpadKey.animate(); in animateShow()
241 dialpadKey.setTranslationX((mIsRtl ? -1 : 1) * mTranslateDistance); in animateShow()
245 dialpadKey.setTranslationY(mTranslateDistance); in animateShow()
/packages/apps/InCallUI/src/com/android/incallui/
DDialpadFragment.java487 DialpadKeyButton dialpadKey; in updateColors() local
489 dialpadKey = (DialpadKeyButton) mDialpadView.findViewById(mButtonIds[i]); in updateColors()
490 ((TextView) dialpadKey.findViewById(R.id.dialpad_key_number)).setTextColor(textColor); in updateColors()
578 DialpadKeyButton dialpadKey; in configureKeypadListeners() local
580 dialpadKey = (DialpadKeyButton) mDialpadView.findViewById(mButtonIds[i]); in configureKeypadListeners()
581 dialpadKey.setOnTouchListener(this); in configureKeypadListeners()
582 dialpadKey.setOnKeyListener(this); in configureKeypadListeners()
583 dialpadKey.setOnHoverListener(this); in configureKeypadListeners()
584 dialpadKey.setOnClickListener(this); in configureKeypadListeners()
/packages/apps/Dialer/src/com/android/dialer/dialpad/
DDialpadFragment.java567 DialpadKeyButton dialpadKey; in configureKeypadListeners() local
570 dialpadKey = (DialpadKeyButton) fragmentView.findViewById(buttonIds[i]); in configureKeypadListeners()
571 dialpadKey.setOnPressedListener(this); in configureKeypadListeners()