Home
last modified time | relevance | path

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

/packages/apps/Dialer/InCallUI/src/com/android/incallui/
DDialpadFragment.java463 DialpadKeyButton dialpadKey; in updateColors() local
465 dialpadKey = (DialpadKeyButton) mDialpadView.findViewById(mButtonIds[i]); in updateColors()
466 ((TextView) dialpadKey.findViewById(R.id.dialpad_key_number)).setTextColor(textColor); in updateColors()
554 DialpadKeyButton dialpadKey; in configureKeypadListeners() local
556 dialpadKey = (DialpadKeyButton) mDialpadView.findViewById(mButtonIds[i]); in configureKeypadListeners()
557 dialpadKey.setOnTouchListener(this); in configureKeypadListeners()
558 dialpadKey.setOnKeyListener(this); in configureKeypadListeners()
559 dialpadKey.setOnHoverListener(this); in configureKeypadListeners()
560 dialpadKey.setOnClickListener(this); in configureKeypadListeners()
/packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
DDialpadView.java149 DialpadKeyButton dialpadKey; in setupKeypad() local
164 dialpadKey = (DialpadKeyButton) findViewById(mButtonIds[i]); in setupKeypad()
165 numberView = (TextView) dialpadKey.findViewById(R.id.dialpad_key_number); in setupKeypad()
166 lettersView = (TextView) dialpadKey.findViewById(R.id.dialpad_key_letters); in setupKeypad()
200 dialpadKey.setContentDescription(numberContentDescription); in setupKeypad()
201 dialpadKey.setBackground(rippleBackground); in setupKeypad()
286 final DialpadKeyButton dialpadKey = (DialpadKeyButton) findViewById(mButtonIds[i]); in animateShow() local
288 ViewPropertyAnimator animator = dialpadKey.animate(); in animateShow()
292 dialpadKey.setTranslationX((mIsRtl ? -1 : 1) * mTranslateDistance); in animateShow()
296 dialpadKey.setTranslationY(mTranslateDistance); in animateShow()
/packages/apps/Dialer/tests/src/com/android/dialer/dialpad/
DDialpadFragmentInstrumentationTest.java78 final View dialpadKey = findViewByDigit(digit, fragment); in pressAndReleaseKey() local
83 fragment.onPressed(dialpadKey, true); in pressAndReleaseKey()
84 fragment.onPressed(dialpadKey, false); in pressAndReleaseKey()
/packages/apps/Dialer/src/com/android/dialer/dialpad/
DDialpadFragment.java615 DialpadKeyButton dialpadKey; in configureKeypadListeners() local
618 dialpadKey = (DialpadKeyButton) fragmentView.findViewById(buttonIds[i]); in configureKeypadListeners()
619 dialpadKey.setOnPressedListener(this); in configureKeypadListeners()