HomeSort by relevance Sort by last modified time
    Searched defs:mOnLayout (Results 1 - 3 of 3) 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 158 private Layout mOnLayout;
818 if (mOnLayout == null) {
819 mOnLayout = makeLayout(mTextOn);
842 maxTextWidth = Math.max(mOnLayout.getWidth(), mOffLayout.getWidth())
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
SwitchCompat.java 172 private Layout mOnLayout;
795 if (mOnLayout == null) {
796 mOnLayout = makeLayout(mTextOn);
819 maxTextWidth = Math.max(mOnLayout.getWidth(), mOffLayout.getWidth())
    [all...]

Completed in 730 milliseconds