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

  /packages/apps/Dialer/java/com/android/dialer/dialpadview/
DialpadView.java 161 DialpadKeyButton dialpadKey = (DialpadKeyButton) findViewById(BUTTON_IDS[i]);
162 TextView numberView = (TextView) dialpadKey.findViewById(R.id.dialpad_key_number);
196 dialpadKey.setContentDescription(numberContentDescription);
197 dialpadKey.setBackground(rippleBackground);
199 TextView primaryLettersView = (TextView) dialpadKey.findViewById(R.id.dialpad_key_letters);
201 (TextView) dialpadKey.findViewById(R.id.dialpad_key_secondary_letters);
288 final DialpadKeyButton dialpadKey = (DialpadKeyButton) findViewById(BUTTON_IDS[i]);
290 ViewPropertyAnimator animator = dialpadKey.animate();
294 dialpadKey.setTranslationX((isRtl ? -1 : 1) * translateDistance);
298 dialpadKey.setTranslationY(translateDistance)
    [all...]
DialpadFragment.java 628 DialpadKeyButton dialpadKey;
631 dialpadKey = fragmentView.findViewById(buttonId);
632 dialpadKey.setOnPressedListener(this);
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/
DialpadFragment.java 172 DialpadKeyButton dialpadKey;
174 dialpadKey = (DialpadKeyButton) dialpadView.findViewById(buttonIds[i]);
175 ((TextView) dialpadKey.findViewById(R.id.dialpad_key_number)).setTextColor(textColor);
248 DialpadKeyButton dialpadKey;
250 dialpadKey = (DialpadKeyButton) dialpadView.findViewById(buttonIds[i]);
251 dialpadKey.setOnKeyListener(this);
252 dialpadKey.setOnClickListener(this);
253 dialpadKey.setOnPressedListener(this);
  /packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
DialpadView.java 149 DialpadKeyButton dialpadKey;
164 dialpadKey = (DialpadKeyButton) findViewById(mButtonIds[i]);
165 numberView = (TextView) dialpadKey.findViewById(R.id.dialpad_key_number);
166 lettersView = (TextView) dialpadKey.findViewById(R.id.dialpad_key_letters);
200 dialpadKey.setContentDescription(numberContentDescription);
201 dialpadKey.setBackground(rippleBackground);
286 final DialpadKeyButton dialpadKey = (DialpadKeyButton) findViewById(mButtonIds[i]);
288 ViewPropertyAnimator animator = dialpadKey.animate();
292 dialpadKey.setTranslationX((mIsRtl ? -1 : 1) * mTranslateDistance);
296 dialpadKey.setTranslationY(mTranslateDistance)
    [all...]

Completed in 186 milliseconds