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

  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 586 final int trackHeight = Math.min(mMaxHeight, paddedHeight);
592 if (thumbHeight > trackHeight) {
594 trackOffset = offsetHeight + (thumbHeight - trackHeight) / 2;
597 final int offsetHeight = (paddedHeight - trackHeight) / 2;
599 thumbOffset = offsetHeight + (trackHeight - thumbHeight) / 2;
604 track.setBounds(0, trackOffset, trackWidth, trackOffset + trackHeight);
    [all...]
Switch.java 850 final int trackHeight;
853 trackHeight = mTrackDrawable.getIntrinsicHeight();
856 trackHeight = 0;
871 final int switchHeight = Math.max(trackHeight, thumbHeight);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationFastScroller.java 436 int trackHeight = Math.max(0, mContainer.height());
438 int heightMeasureSpec = MeasureSpec.makeMeasureSpec(trackHeight, MeasureSpec.EXACTLY);
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
SwitchCompat.java 827 final int trackHeight;
830 trackHeight = mTrackDrawable.getIntrinsicHeight();
833 trackHeight = 0;
848 final int switchHeight = Math.max(trackHeight, thumbHeight);
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java     [all...]

Completed in 701 milliseconds