HomeSort by relevance Sort by last modified time
    Searched defs:peekHeight (Results 1 - 4 of 4) sorted by null

  /frameworks/support/design/src/android/support/design/widget/
BottomSheetBehavior.java 225 int peekHeight;
231 peekHeight = Math.max(mPeekHeightMin, mParentHeight - parent.getWidth() * 9 / 16);
233 peekHeight = mPeekHeight;
236 mMaxOffset = Math.max(mParentHeight - peekHeight, mMinOffset);
431 * @param peekHeight The height of the collapsed bottom sheet in pixels, or
436 public final void setPeekHeight(int peekHeight) {
438 if (peekHeight == PEEK_HEIGHT_AUTO) {
443 } else if (mPeekHeightAuto || mPeekHeight != peekHeight) {
445 mPeekHeight = Math.max(0, peekHeight);
446 mMaxOffset = mParentHeight - peekHeight;
    [all...]
  /frameworks/support/wear/src/android/support/wear/widget/drawer/
WearableDrawerLayout.java     [all...]
  /prebuilts/sdk/current/support/wear/libs/
android-support-wear.jar 
  /prebuilts/sdk/current/support/design/libs/
android-support-design.jar 

Completed in 149 milliseconds