Home | History | Annotate | Download | only in launcher3

Lines Matching refs:PagedView

60 public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarchyChangeListener {
61 private static final String TAG = "PagedView";
175 // We use the min scale to determine how much to expand the actually PagedView measured
213 public PagedView(Context context) {
217 public PagedView(Context context, AttributeSet attrs) {
221 public PagedView(Context context, AttributeSet attrs, int defStyle) {
225 R.styleable.PagedView, defStyle, 0);
336 if (DEBUG) Log.d(TAG, "PagedView.updateDragViewTranslationDuringDrag(): "
358 // Convenience methods to get the actual width/height of the PagedView (since it is measured
368 // PagedView both horizontally and vertically
423 * in CustomizePagedView to allow tabs to share the same PagedView while resetting the scroll of
737 // We measure the dimensions of the PagedView to be larger than the pages so that when we
783 if (DEBUG) Log.d(TAG, "PagedView.onMeasure(): " + widthSize + ", " + heightSize);
784 if (DEBUG) Log.d(TAG, "PagedView.scaledSize: " + scaledWidthSize + ", " + scaledHeightSize);
785 if (DEBUG) Log.d(TAG, "PagedView.parentSize: " + parentWidthSize + ", " + parentHeightSize);
786 if (DEBUG) Log.d(TAG, "PagedView.horizontalPadding: " + horizontalPadding);
787 if (DEBUG) Log.d(TAG, "PagedView.verticalPadding: " + verticalPadding);
845 if (DEBUG) Log.d(TAG, "PagedView.onLayout()");
2292 // Accessibility-wise, PagedView doesn't support long click, so disabling it.