summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/ApplicationInfoDropTarget.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher2/ApplicationInfoDropTarget.java')
-rw-r--r--src/com/android/launcher2/ApplicationInfoDropTarget.java45
1 files changed, 23 insertions, 22 deletions
diff --git a/src/com/android/launcher2/ApplicationInfoDropTarget.java b/src/com/android/launcher2/ApplicationInfoDropTarget.java
index 99a52582e..0e342a7b4 100644
--- a/src/com/android/launcher2/ApplicationInfoDropTarget.java
+++ b/src/com/android/launcher2/ApplicationInfoDropTarget.java
@@ -21,7 +21,6 @@ import android.content.Context;
import android.graphics.Paint;
import android.graphics.PorterDuff;
import android.graphics.PorterDuffColorFilter;
-import android.graphics.Rect;
import android.util.AttributeSet;
import android.view.View;
import android.widget.ImageView;
@@ -32,10 +31,17 @@ import android.widget.ImageView;
*/
public class ApplicationInfoDropTarget extends ImageView implements DropTarget, DragController.DragListener {
private Launcher mLauncher;
- private DragController mDragController;
private boolean mActive = false;
- private View mHandle;
+ /**
+ * If true, this View responsible for managing its own visibility, and that of its handle.
+ * This is generally the case, but it will be set to false when this is part of the
+ * Contextual Action Bar.
+ */
+ private boolean mManageVisibility = true;
+
+ /** The view that this view should appear in the place of. */
+ private View mHandle = null;
private final Paint mPaint = new Paint();
@@ -47,11 +53,6 @@ public class ApplicationInfoDropTarget extends ImageView implements DropTarget,
super(context, attrs, defStyle);
}
- @Override
- protected void onFinishInflate() {
- super.onFinishInflate();
- }
-
/**
* Set the color that will be used as a filter over objects dragged over this object.
*/
@@ -92,7 +93,6 @@ public class ApplicationInfoDropTarget extends ImageView implements DropTarget,
public void onDragExit(DragSource source, int x, int y, int xOffset, int yOffset,
DragView dragView, Object dragInfo) {
- // TODO: Animate out
dragView.setPaint(null);
}
@@ -100,22 +100,23 @@ public class ApplicationInfoDropTarget extends ImageView implements DropTarget,
if (info != null) {
mActive = true;
- // TODO: Animate these in and out
-
- // Only show the info icon when an application is selected
- if (((ItemInfo)info).itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) {
- setVisibility(VISIBLE);
+ if (mManageVisibility) {
+ // Only show the info icon when an application is selected
+ if (((ItemInfo)info).itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION) {
+ setVisibility(VISIBLE);
+ }
+ mHandle.setVisibility(INVISIBLE);
}
- mHandle.setVisibility(INVISIBLE);
}
}
public void onDragEnd() {
if (mActive) {
mActive = false;
- // TODO: Animate these in and out
- setVisibility(GONE);
- mHandle.setVisibility(VISIBLE);
+ if (mManageVisibility) {
+ setVisibility(GONE);
+ mHandle.setVisibility(VISIBLE);
+ }
}
}
@@ -123,14 +124,14 @@ public class ApplicationInfoDropTarget extends ImageView implements DropTarget,
mLauncher = launcher;
}
- void setDragController(DragController dragController) {
- mDragController = dragController;
- }
-
void setHandle(View view) {
mHandle = view;
}
+ void setManageVisibility(boolean value) {
+ mManageVisibility = value;
+ }
+
@Override
public DropTarget getDropTargetDelegate(DragSource source, int x, int y, int xOffset, int yOffset,
DragView dragView, Object dragInfo) {