HomeSort by relevance Sort by last modified time
    Searched full:pagedview (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/base/packages/Keyguard/res/values/
attrs.xml 63 <!-- PagedView specific attributes. These attributes are used to customize
64 a PagedView view in XML files. -->
65 <declare-styleable name="PagedView">
66 <!-- The space between adjacent pages of the PagedView. -->
  /packages/apps/Launcher2/res/values/
attrs.xml 96 <!-- PagedView specific attributes. These attributes are used to customize
97 a PagedView view in XML files. -->
98 <declare-styleable name="PagedView">
107 <!-- The space between adjacent pages of the PagedView. -->
  /packages/apps/Launcher3/res/values/
attrs.xml 86 <!-- PagedView specific attributes. These attributes are used to customize
87 a PagedView view in XML files. -->
88 <declare-styleable name="PagedView">
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewIcon.java 25 * An icon on a PagedView, specifically for items in the launcher's paged view (with compound
PagedViewWidget.java 237 // We eat up the touch events here, since the PagedView (which uses the same swiping
240 // handle touch events, it gets forwarded up to PagedView itself, and it's own
PagedViewWithDraggableItems.java 25 /* Class that does most of the work of enabling dragging items out of a PagedView by performing a
34 public abstract class PagedViewWithDraggableItems extends PagedView
FocusHelper.java 122 ViewGroup page = (ViewGroup) ((PagedView) container).getPageAt(index);
137 final PagedView container = (PagedView) parent.getParent();
142 final int pageIndex = ((PagedView) container).indexToPage(container.indexOfChild(parent));
297 final PagedView container = (PagedView) parentLayout.getParent();
302 final int pageIndex = ((PagedView) container).indexToPage(container.indexOfChild(parentLayout));
    [all...]
PagedViewGridLayout.java 60 // PagedView currently has issues with different-sized pages since it calculates the
PagedViewIconCache.java 31 * Simple cache mechanism for PagedView outlines.
SmoothPagedView.java 24 public abstract class SmoothPagedView extends PagedView {
PagedView.java 53 public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarchyChangeListener {
54 private static final String TAG = "PagedView";
194 public PagedView(Context context) {
198 public PagedView(Context context, AttributeSet attrs) {
202 public PagedView(Context context, AttributeSet attrs, int defStyle) {
206 R.styleable.PagedView, defStyle, 0);
303 * in CustomizePagedView to allow tabs to share the same PagedView while resetting the scroll of
524 if (DEBUG) Log.d(TAG, "PagedView.onMeasure(): " + widthSize + ", " + heightSize);
573 // The gap between pages in the PagedView should be equal to the gap from the page
650 if (DEBUG) Log.d(TAG, "PagedView.onLayout()")
    [all...]
AppsCustomizePagedView.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedViewWithDraggableItems.java 25 /* Class that does most of the work of enabling dragging items out of a PagedView by performing a
34 public abstract class PagedViewWithDraggableItems extends PagedView
FocusHelper.java 76 ViewGroup page = (ViewGroup) ((PagedView) container).getPageAt(index);
91 final PagedView container = (PagedView) parent.getParent();
94 final int pageIndex = ((PagedView) container).indexToPage(container.indexOfChild(parent));
247 final PagedView container = (PagedView) parentLayout.getParent();
250 final int pageIndex = ((PagedView) container).indexToPage(container.indexOfChild(parentLayout));
    [all...]
FocusIndicatorView.java 135 if (parent instanceof PagedView) {
PagedViewWidget.java 253 // We eat up the touch events here, since the PagedView (which uses the same swiping
256 // handle touch events, it gets forwarded up to PagedView itself, and it's own
DeviceProfile.java 762 PagedView workspace = (PagedView) launcher.findViewById(R.id.workspace);
    [all...]
PagedView.java 68 public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarchyChangeListener {
69 private static final String TAG = "PagedView";
217 // We use the min scale to determine how much to expand the actually PagedView measured
269 public PagedView(Context context) {
273 public PagedView(Context context, AttributeSet attrs) {
277 public PagedView(Context context, AttributeSet attrs, int defStyle) {
281 R.styleable.PagedView, defStyle, 0);
394 if (DEBUG) Log.d(TAG, "PagedView.updateDragViewTranslationDuringDrag(): "
416 // Convenience methods to get the actual width/height of the PagedView (since it is measured
426 // PagedView both horizontally and verticall
    [all...]
SmoothPagedView.java 23 public abstract class SmoothPagedView extends PagedView {
LauncherClings.java 73 model.startLoader(false, PagedView.INVALID_RESTORE_PAGE,
AppsCustomizePagedView.java     [all...]
Launcher.java 106 import com.android.launcher3.PagedView.PageSwitchListener;
480 mModel.startLoader(true, PagedView.INVALID_RESTORE_PAGE);
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java 56 public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarchyChangeListener {
203 // We use the min scale to determine how much to expand the actually PagedView measured
271 public PagedView(Context context) {
275 public PagedView(Context context, AttributeSet attrs) {
279 public PagedView(Context context, AttributeSet attrs, int defStyle) {
282 R.styleable.PagedView, defStyle, 0);
351 if (DEBUG) Log.d(TAG, "PagedView.updateDragViewTranslationDuringDrag(): " + x + ", " + y);
370 // Convenience methods to get the actual width/height of the PagedView (since it is measured
380 // PagedView both horizontally and vertically
434 * in CustomizePagedView to allow tabs to share the same PagedView while resetting the scroll o
    [all...]
KeyguardViewStateManager.java 69 public void setPagedView(KeyguardWidgetPager pagedView) {
70 mKeyguardWidgetPager = pagedView;
KeyguardWidgetPager.java 49 public class KeyguardWidgetPager extends PagedView implements PagedView.PageSwitchListener,
866 // We need to force measure the PagedView so that the calls to update the scroll
    [all...]

Completed in 413 milliseconds

1 2