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

  /packages/apps/Launcher2/src/com/android/launcher2/
FolderIcon.java 60 private static final int NUM_ITEMS_IN_PREVIEW = 3;
396 float finalAlpha = index < NUM_ITEMS_IN_PREVIEW ? 0.5f : 0f;
476 mParams = computePreviewItemDrawingParams(Math.min(NUM_ITEMS_IN_PREVIEW, index), mParams);
490 index = NUM_ITEMS_IN_PREVIEW - index - 1;
491 float r = (index * 1.0f) / (NUM_ITEMS_IN_PREVIEW - 1);
553 int nItemsInPreview = Math.min(items.size(), NUM_ITEMS_IN_PREVIEW);
  /packages/apps/Launcher3/src/com/android/launcher3/
FolderIcon.java 63 public static final int NUM_ITEMS_IN_PREVIEW = 3;
458 float finalAlpha = index < NUM_ITEMS_IN_PREVIEW ? 0.5f : 0f;
537 mParams = computePreviewItemDrawingParams(Math.min(NUM_ITEMS_IN_PREVIEW, index), mParams);
551 index = NUM_ITEMS_IN_PREVIEW - index - 1;
552 float r = (index * 1.0f) / (NUM_ITEMS_IN_PREVIEW - 1);
623 int nItemsInPreview = Math.min(items.size(), NUM_ITEMS_IN_PREVIEW);

Completed in 142 milliseconds