summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/folder/ClippedFolderIconLayoutRule.java
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2017-09-08 11:59:05 -0700
committerSunny Goyal <sunnygoyal@google.com>2017-09-08 12:07:24 -0700
commitadd3d8322dde223629f1653bed6098342a2d69f7 (patch)
treee52db0b1fde300492b68ddec416b8f902551cbef /src/com/android/launcher3/folder/ClippedFolderIconLayoutRule.java
parent17e780794bd10e08405350af8fa1f2fffff79829 (diff)
downloadandroid_packages_apps_Trebuchet-add3d8322dde223629f1653bed6098342a2d69f7.tar.gz
android_packages_apps_Trebuchet-add3d8322dde223629f1653bed6098342a2d69f7.tar.bz2
android_packages_apps_Trebuchet-add3d8322dde223629f1653bed6098342a2d69f7.zip
Removing some folder customization options
The old folder preview and animation relied on creating bitmaps for transition. As we move to hardware bitmaps, creating custom bitmaps which rely on icon bitmaps would be costly (hardware bitmaps are immutable and cannot be drawn on a software canvas). Bug: 35428783 Change-Id: I39869ed44feb6a886985ad15775bc1ab55565727
Diffstat (limited to 'src/com/android/launcher3/folder/ClippedFolderIconLayoutRule.java')
-rw-r--r--src/com/android/launcher3/folder/ClippedFolderIconLayoutRule.java51
1 files changed, 10 insertions, 41 deletions
diff --git a/src/com/android/launcher3/folder/ClippedFolderIconLayoutRule.java b/src/com/android/launcher3/folder/ClippedFolderIconLayoutRule.java
index f25345ee8..5954efa95 100644
--- a/src/com/android/launcher3/folder/ClippedFolderIconLayoutRule.java
+++ b/src/com/android/launcher3/folder/ClippedFolderIconLayoutRule.java
@@ -1,9 +1,8 @@
package com.android.launcher3.folder;
+public class ClippedFolderIconLayoutRule {
-public class ClippedFolderIconLayoutRule implements FolderIcon.PreviewLayoutRule {
-
- static final int MAX_NUM_ITEMS_IN_PREVIEW = 4;
+ public static final int MAX_NUM_ITEMS_IN_PREVIEW = 4;
private static final int MIN_NUM_ITEMS_IN_PREVIEW = 2;
private static final float MIN_SCALE = 0.48f;
@@ -11,8 +10,8 @@ public class ClippedFolderIconLayoutRule implements FolderIcon.PreviewLayoutRule
private static final float MAX_RADIUS_DILATION = 0.15f;
private static final float ITEM_RADIUS_SCALE_FACTOR = 1.33f;
- private static final int EXIT_INDEX = -2;
- private static final int ENTER_INDEX = -3;
+ public static final int EXIT_INDEX = -2;
+ public static final int ENTER_INDEX = -3;
private float[] mTmpPoint = new float[2];
@@ -22,7 +21,6 @@ public class ClippedFolderIconLayoutRule implements FolderIcon.PreviewLayoutRule
private boolean mIsRtl;
private float mBaselineIconScale;
- @Override
public void init(int availableSpace, float intrinsicIconSize, boolean rtl) {
mAvailableSpace = availableSpace;
mRadius = ITEM_RADIUS_SCALE_FACTOR * availableSpace / 2f;
@@ -31,19 +29,18 @@ public class ClippedFolderIconLayoutRule implements FolderIcon.PreviewLayoutRule
mBaselineIconScale = availableSpace / (intrinsicIconSize * 1f);
}
- @Override
public PreviewItemDrawingParams computePreviewItemDrawingParams(int index, int curNumItems,
PreviewItemDrawingParams params) {
- float totalScale = scaleForItem(index, curNumItems);
+ float totalScale = scaleForItem(curNumItems);
float transX;
float transY;
float overlayAlpha = 0;
- if (index == getExitIndex()) {
+ if (index == EXIT_INDEX) {
// 0 1 * <-- Exit position (row 0, col 2)
// 2 3
getGridPosition(0, 2, mTmpPoint);
- } else if (index == getEnterIndex()) {
+ } else if (index == ENTER_INDEX) {
// 0 1
// 2 3 * <-- Enter position (row 1, col 2)
getGridPosition(1, 2, mTmpPoint);
@@ -120,7 +117,7 @@ public class ClippedFolderIconLayoutRule implements FolderIcon.PreviewLayoutRule
MIN_NUM_ITEMS_IN_PREVIEW) / (MAX_NUM_ITEMS_IN_PREVIEW - MIN_NUM_ITEMS_IN_PREVIEW));
double theta = theta0 + index * (2 * Math.PI / curNumItems) * direction;
- float halfIconSize = (mIconSize * scaleForItem(index, curNumItems)) / 2;
+ float halfIconSize = (mIconSize * scaleForItem(curNumItems)) / 2;
// Map the location along the circle, and offset the coordinates to represent the center
// of the icon, and to be based from the top / left of the preview area. The y component
@@ -130,10 +127,9 @@ public class ClippedFolderIconLayoutRule implements FolderIcon.PreviewLayoutRule
}
- @Override
- public float scaleForItem(int index, int numItems) {
+ public float scaleForItem(int numItems) {
// Scale is determined by the number of items in the preview.
- float scale = 1f;
+ final float scale;
if (numItems <= 2) {
scale = MAX_SCALE;
} else if (numItems == 3) {
@@ -141,37 +137,10 @@ public class ClippedFolderIconLayoutRule implements FolderIcon.PreviewLayoutRule
} else {
scale = MIN_SCALE;
}
-
return scale * mBaselineIconScale;
}
- @Override
public float getIconSize() {
return mIconSize;
}
-
- @Override
- public int maxNumItems() {
- return MAX_NUM_ITEMS_IN_PREVIEW;
- }
-
- @Override
- public boolean clipToBackground() {
- return true;
- }
-
- @Override
- public boolean hasEnterExitIndices() {
- return true;
- }
-
- @Override
- public int getExitIndex() {
- return EXIT_INDEX;
- }
-
- @Override
- public int getEnterIndex() {
- return ENTER_INDEX;
- }
}