HomeSort by relevance Sort by last modified time
    Searched refs:mOnLayout (Results 1 - 2 of 2) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
CustomViewAccessibilityActivity.java 202 private Layout mOnLayout;
250 if (mOnLayout == null) {
251 mOnLayout = makeLayout(mTextOn);
256 final int minWidth = Math.max(mOnLayout.getWidth(), mOffLayout.getWidth())
258 final int minHeight = Math.max(mOnLayout.getHeight(), mOffLayout.getHeight())
275 Layout switchText = mChecked ? mOnLayout : mOffLayout;
  /frameworks/base/core/java/android/widget/
Switch.java 91 private Layout mOnLayout;
313 if (mOnLayout == null) {
314 mOnLayout = makeLayout(mTextOn);
321 final int maxTextWidth = Math.max(mOnLayout.getWidth(), mOffLayout.getWidth());
370 CharSequence text = mOnLayout.getText();
594 Layout switchText = getTargetCheckedState() ? mOnLayout : mOffLayout;

Completed in 297 milliseconds