Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/dialer/dialpadview/
DDialpadView.java163 DialpadKeyButton dialpadKey = (DialpadKeyButton) findViewById(BUTTON_IDS[i]); in setupKeypad() local
164 TextView numberView = (TextView) dialpadKey.findViewById(R.id.dialpad_key_number); in setupKeypad()
201 dialpadKey.setContentDescription(numberContentDescription); in setupKeypad()
202 dialpadKey.setBackground(rippleBackground); in setupKeypad()
204 TextView primaryLettersView = (TextView) dialpadKey.findViewById(R.id.dialpad_key_letters); in setupKeypad()
206 (TextView) dialpadKey.findViewById(R.id.dialpad_key_secondary_letters); in setupKeypad()
293 final DialpadKeyButton dialpadKey = (DialpadKeyButton) findViewById(BUTTON_IDS[i]); in animateShow() local
295 ViewPropertyAnimator animator = dialpadKey.animate(); in animateShow()
299 dialpadKey.setTranslationX((isRtl ? -1 : 1) * translateDistance); in animateShow()
303 dialpadKey.setTranslationY(translateDistance); in animateShow()
[all …]
DDialpadFragment.java719 DialpadKeyButton dialpadKey; in configureKeypadListeners() local
722 dialpadKey = fragmentView.findViewById(buttonId); in configureKeypadListeners()
723 dialpadKey.setOnPressedListener(this); in configureKeypadListeners()
/packages/apps/Dialer/java/com/android/incallui/
DDialpadFragment.java179 DialpadKeyButton dialpadKey; in updateColors() local
181 dialpadKey = (DialpadKeyButton) dialpadView.findViewById(buttonIds[i]); in updateColors()
182 ((TextView) dialpadKey.findViewById(R.id.dialpad_key_number)).setTextColor(textColor); in updateColors()
255 DialpadKeyButton dialpadKey; in configureKeypadListeners() local
257 dialpadKey = (DialpadKeyButton) dialpadView.findViewById(buttonIds[i]); in configureKeypadListeners()
258 dialpadKey.setOnKeyListener(this); in configureKeypadListeners()
259 dialpadKey.setOnClickListener(this); in configureKeypadListeners()
260 dialpadKey.setOnPressedListener(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()