summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/widget
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/widget')
-rw-r--r--src/com/android/launcher3/widget/WidgetCell.java8
-rw-r--r--src/com/android/launcher3/widget/WidgetsContainerView.java2
2 files changed, 4 insertions, 6 deletions
diff --git a/src/com/android/launcher3/widget/WidgetCell.java b/src/com/android/launcher3/widget/WidgetCell.java
index d10c3049e..1ae75c3cc 100644
--- a/src/com/android/launcher3/widget/WidgetCell.java
+++ b/src/com/android/launcher3/widget/WidgetCell.java
@@ -50,10 +50,7 @@ public class WidgetCell extends LinearLayout implements OnLayoutChangeListener {
private static final String TAG = "WidgetCell";
private static final boolean DEBUG = false;
- // Temporary preset width and height of the image to keep them aligned.
- //private static final int PRESET_PREVIEW_HEIGHT = 480;
- //private static final int PRESET_PREVIEW_WIDTH = 480;
-
+ private static final int FADE_IN_DURATION_MS = 70;
private int mPresetPreviewSize;
private static WidgetCell sShortpressTarget = null;
@@ -210,7 +207,8 @@ public class WidgetCell extends LinearLayout implements OnLayoutChangeListener {
mOriginalImagePadding.right,
mOriginalImagePadding.bottom);
}
- image.setAlpha(1f);
+ image.setAlpha(0f);
+ image.animate().alpha(1.0f).setDuration(FADE_IN_DURATION_MS);
image.mAllowRequestLayout = true;
image.requestLayout();
}
diff --git a/src/com/android/launcher3/widget/WidgetsContainerView.java b/src/com/android/launcher3/widget/WidgetsContainerView.java
index 5aa80a9e2..292a5de20 100644
--- a/src/com/android/launcher3/widget/WidgetsContainerView.java
+++ b/src/com/android/launcher3/widget/WidgetsContainerView.java
@@ -126,7 +126,7 @@ public class WidgetsContainerView extends FrameLayout implements Insettable, Vie
//
public View getContentView() {
- return findViewById(R.id.widgets_list_view);
+ return findViewById(R.id.widgets_content);
}
public View getRevealView() {