Home
last modified time | relevance | path

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

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DSwitchCompat.java174 private Layout mOffLayout; field in SwitchCompat
800 if (mOffLayout == null) { in onMeasure()
801 mOffLayout = makeLayout(mTextOff); in onMeasure()
820 maxTextWidth = Math.max(mOnLayout.getWidth(), mOffLayout.getWidth()) in onMeasure()
1234 final Layout switchText = getTargetCheckedState() ? mOnLayout : mOffLayout; in onDraw()
/frameworks/base/core/java/android/widget/
DSwitch.java157 private Layout mOffLayout; field in Switch
818 if (mOffLayout == null) { in onMeasure()
819 mOffLayout = makeLayout(mTextOff); in onMeasure()
838 maxTextWidth = Math.max(mOnLayout.getWidth(), mOffLayout.getWidth()) in onMeasure()
1250 final Layout switchText = getTargetCheckedState() ? mOnLayout : mOffLayout; in onDraw()