Searched refs:textScale (Results 1 – 2 of 2) sorted by relevance
/packages/apps/Calculator/src/com/android/calculator2/ |
D | Calculator.java | 280 final float textScale = oldSize / textView.getTextSize(); in onTextSizeChanged() local 281 final float translationX = (1.0f - textScale) * in onTextSizeChanged() 283 final float translationY = (1.0f - textScale) * in onTextSizeChanged() 288 ObjectAnimator.ofFloat(textView, View.SCALE_X, textScale, 1.0f), in onTextSizeChanged() 289 ObjectAnimator.ofFloat(textView, View.SCALE_Y, textScale, 1.0f), in onTextSizeChanged()
|
/packages/apps/ExactCalculator/src/com/android/calculator2/ |
D | Calculator.java | 609 final float textScale = oldSize / textView.getTextSize(); in onTextSizeChanged() local 610 final float translationX = (1.0f - textScale) * in onTextSizeChanged() 612 final float translationY = (1.0f - textScale) * in onTextSizeChanged() 617 ObjectAnimator.ofFloat(textView, View.SCALE_X, textScale, 1.0f), in onTextSizeChanged() 618 ObjectAnimator.ofFloat(textView, View.SCALE_Y, textScale, 1.0f), in onTextSizeChanged()
|