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

  /frameworks/base/core/java/com/android/internal/widget/
ResolverDrawerLayout.java 71 private int mTopOffset;
375 mTopOffset += dy;
683 mTopOffset = Math.max(0, heightSize - heightUsed) + (int) mCollapseOffset;
692 int ypos = mTopOffset;
  /frameworks/base/core/java/android/widget/
SlidingDrawer.java 119 private int mTopOffset;
225 mTopOffset = (int) a.getDimension(R.styleable.SlidingDrawer_topOffset, 0.0f);
295 int height = heightSpecSize - handle.getMeasuredHeight() - mTopOffset;
299 int width = widthSpecSize - handle.getMeasuredWidth() - mTopOffset;
325 canvas.translate(isVertical ? 0 : handle.getLeft() - mTopOffset,
326 isVertical ? handle.getTop() - mTopOffset : 0);
356 childTop = mExpanded ? mTopOffset : height - childHeight + mBottomOffset;
358 content.layout(0, mTopOffset + childHeight, content.getMeasuredWidth(),
359 mTopOffset + childHeight + content.getMeasuredHeight());
361 childLeft = mExpanded ? mTopOffset : width - childWidth + mBottomOffset
    [all...]

Completed in 108 milliseconds