Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/charging/
DWirelessChargingLayout.java67 final TextView mPercentage = findViewById(R.id.wireless_charging_percentage); in init() local
71 mPercentage.setTextColor(Color.WHITE); in init()
75 mPercentage.setText(NumberFormat.getPercentInstance().format(mBatteryLevel / 100f)); in init()
76 mPercentage.setAlpha(0); in init()
89 ValueAnimator textSizeAnimator = ObjectAnimator.ofFloat(mPercentage, "textSize", in init()
96 ValueAnimator textOpacityAnimator = ObjectAnimator.ofFloat(mPercentage, "alpha", 0, 1); in init()
104 ValueAnimator textFadeAnimator = ObjectAnimator.ofFloat(mPercentage, "alpha", 1, 0); in init()