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.java141 private Layout mOffLayout; field in SwitchCompat
529 if (mOffLayout == null) { in onMeasure()
530 mOffLayout = makeLayout(mTextOff); in onMeasure()
549 maxTextWidth = Math.max(mOnLayout.getWidth(), mOffLayout.getWidth()) in onMeasure()
960 final Layout switchText = getTargetCheckedState() ? mOnLayout : mOffLayout; in onDraw()
/frameworks/base/core/java/android/widget/
DSwitch.java153 private Layout mOffLayout; field in Switch
814 if (mOffLayout == null) { in onMeasure()
815 mOffLayout = makeLayout(mTextOff); in onMeasure()
834 maxTextWidth = Math.max(mOnLayout.getWidth(), mOffLayout.getWidth()) in onMeasure()
1245 final Layout switchText = getTargetCheckedState() ? mOnLayout : mOffLayout; in onDraw()