Home
last modified time | relevance | path

Searched refs:resultScale (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Calculator/src/com/android/calculator2/
DCalculator.java401 final float resultScale = in onResult() local
403 final float resultTranslationX = (1.0f - resultScale) * in onResult()
405 final float resultTranslationY = (1.0f - resultScale) * in onResult()
426 ObjectAnimator.ofFloat(mResultEditText, View.SCALE_X, resultScale), in onResult()
427 ObjectAnimator.ofFloat(mResultEditText, View.SCALE_Y, resultScale), in onResult()
/packages/apps/ExactCalculator/src/com/android/calculator2/
DCalculator.java792 final float resultScale = textSize / mResultText.getTextSize(); in onResult() local
814 PropertyValuesHolder.ofFloat(View.SCALE_X, resultScale), in onResult()
815 PropertyValuesHolder.ofFloat(View.SCALE_Y, resultScale), in onResult()
832 mResultText.setScaleX(resultScale); in onResult()
833 mResultText.setScaleY(resultScale); in onResult()