Home
last modified time | relevance | path

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

/development/samples/ApiDemos/src/com/example/android/apis/accessibility/
DCustomViewAccessibilityActivity.java202 private Layout mOnLayout; field in CustomViewAccessibilityActivity.BaseToggleButton
250 if (mOnLayout == null) { in onMeasure()
251 mOnLayout = makeLayout(mTextOn); in onMeasure()
256 final int minWidth = Math.max(mOnLayout.getWidth(), mOffLayout.getWidth()) in onMeasure()
258 final int minHeight = Math.max(mOnLayout.getHeight(), mOffLayout.getHeight()) in onMeasure()
275 Layout switchText = mChecked ? mOnLayout : mOffLayout; in onDraw()