blob: f9440227a689356a1b086113dd6e0565e2930b70 [file] [log] [blame]
Patrick Dubroy4ed62782010-08-17 15:11:18 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.launcher2;
18
Michael Jurka800242b2010-12-16 11:39:26 -080019import com.android.launcher.R;
20
Winson Chung760e5372010-12-15 13:14:23 -080021import android.animation.Animator;
Michael Jurka800242b2010-12-16 11:39:26 -080022import android.animation.AnimatorSet;
Winson Chung760e5372010-12-15 13:14:23 -080023import android.animation.ObjectAnimator;
Michael Jurka800242b2010-12-16 11:39:26 -080024import android.animation.Animator.AnimatorListener;
Patrick Dubroybc6840b2010-09-01 11:54:27 -070025import android.content.ComponentName;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070026import android.content.Context;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070027import android.graphics.PorterDuff;
28import android.graphics.PorterDuffColorFilter;
Winson Chungbe5212b2010-12-20 11:36:33 -080029import android.graphics.Rect;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070030import android.util.AttributeSet;
Michael Jurka800242b2010-12-16 11:39:26 -080031import android.view.View;
Adam Cohencdc30d52010-12-01 15:09:47 -080032
Patrick Dubroy4ed62782010-08-17 15:11:18 -070033/**
34 * Implements a DropTarget which allows applications to be dropped on it,
35 * in order to launch the application info for that app.
36 */
Winson Chung760e5372010-12-15 13:14:23 -080037public class ApplicationInfoDropTarget extends IconDropTarget {
38 private static final int sFadeInAnimationDuration = 200;
39 private static final int sFadeOutAnimationDuration = 100;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070040
Michael Jurka800242b2010-12-16 11:39:26 -080041 private AnimatorSet mFadeAnimator;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070042
43 public ApplicationInfoDropTarget(Context context, AttributeSet attrs) {
44 this(context, attrs, 0);
45 }
46
47 public ApplicationInfoDropTarget(Context context, AttributeSet attrs, int defStyle) {
48 super(context, attrs, defStyle);
Patrick Dubroy4ed62782010-08-17 15:11:18 -070049
Winson Chung760e5372010-12-15 13:14:23 -080050 // Set the hover paint colour
51 int colour = getContext().getResources().getColor(R.color.app_info_filter);
52 mHoverPaint.setColorFilter(new PorterDuffColorFilter(colour, PorterDuff.Mode.SRC_ATOP));
Winson Chungbe5212b2010-12-20 11:36:33 -080053
Winson Chung59e1f9a2010-12-21 11:31:54 -080054 if (LauncherApplication.isScreenXLarge()) {
55 // For the application info drop target, we just ignore the left padding since we don't want
56 // to overlap with the delete zone padding
57 int tb = getResources().getDimensionPixelSize(
58 R.dimen.delete_zone_vertical_drag_padding);
59 int lr = getResources().getDimensionPixelSize(
60 R.dimen.delete_zone_horizontal_drag_padding);
61 setDragPadding(tb, lr, tb, 0);
62 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -070063 }
64
65 public boolean acceptDrop(DragSource source, int x, int y, int xOffset, int yOffset,
66 DragView dragView, Object dragInfo) {
Patrick Dubroy4ed62782010-08-17 15:11:18 -070067 // acceptDrop is called just before onDrop. We do the work here, rather than
68 // in onDrop, because it allows us to reject the drop (by returning false)
69 // so that the object being dragged isn't removed from the home screen.
Adam Cohencdc30d52010-12-01 15:09:47 -080070 if (getVisibility() != VISIBLE) return false;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070071
Patrick Dubroybc6840b2010-09-01 11:54:27 -070072 ComponentName componentName = null;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070073 if (dragInfo instanceof ApplicationInfo) {
Patrick Dubroybc6840b2010-09-01 11:54:27 -070074 componentName = ((ApplicationInfo)dragInfo).componentName;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070075 } else if (dragInfo instanceof ShortcutInfo) {
Patrick Dubroybc6840b2010-09-01 11:54:27 -070076 componentName = ((ShortcutInfo)dragInfo).intent.getComponent();
Patrick Dubroy4ed62782010-08-17 15:11:18 -070077 }
Patrick Dubroybc6840b2010-09-01 11:54:27 -070078 mLauncher.startApplicationDetailsActivity(componentName);
Patrick Dubroy4ed62782010-08-17 15:11:18 -070079 return false;
80 }
81
Patrick Dubroy4ed62782010-08-17 15:11:18 -070082 public void onDragEnter(DragSource source, int x, int y, int xOffset, int yOffset,
83 DragView dragView, Object dragInfo) {
Adam Cohencdc30d52010-12-01 15:09:47 -080084 if (!mDragAndDropEnabled) return;
Winson Chung760e5372010-12-15 13:14:23 -080085 dragView.setPaint(mHoverPaint);
Patrick Dubroy4ed62782010-08-17 15:11:18 -070086 }
87
88 public void onDragExit(DragSource source, int x, int y, int xOffset, int yOffset,
89 DragView dragView, Object dragInfo) {
Adam Cohencdc30d52010-12-01 15:09:47 -080090 if (!mDragAndDropEnabled) return;
Patrick Dubroy4ed62782010-08-17 15:11:18 -070091 dragView.setPaint(null);
92 }
93
94 public void onDragStart(DragSource source, Object info, int dragAction) {
Adam Cohencdc30d52010-12-01 15:09:47 -080095 if (info != null && mDragAndDropEnabled) {
Michael Jurka774bd372010-10-22 13:40:50 -070096 final int itemType = ((ItemInfo)info).itemType;
97 mActive = (itemType == LauncherSettings.Favorites.ITEM_TYPE_APPLICATION);
Adam Cohencdc30d52010-12-01 15:09:47 -080098 if (mActive) {
Winson Chung760e5372010-12-15 13:14:23 -080099 // Fade in this icon
100 if (mFadeAnimator != null) mFadeAnimator.cancel();
Michael Jurka800242b2010-12-16 11:39:26 -0800101 mFadeAnimator = new AnimatorSet();
102 Animator infoButtonAnimator = ObjectAnimator.ofFloat(this, "alpha", 0.0f, 1.0f);
103 infoButtonAnimator.setDuration(sFadeInAnimationDuration);
104
Michael Jurkab8e14472010-12-20 16:06:10 -0800105 mFadeAnimator.play(infoButtonAnimator);
106
Adam Cohencdc30d52010-12-01 15:09:47 -0800107 setVisibility(VISIBLE);
Winson Chung760e5372010-12-15 13:14:23 -0800108
Michael Jurkab8e14472010-12-20 16:06:10 -0800109 // Fade out the overlapping views
110 if (mOverlappingViews != null) {
111 for (View view : mOverlappingViews) {
112 ObjectAnimator oa = ObjectAnimator.ofFloat(view, "alpha", 0.0f);
113 oa.setDuration(sFadeOutAnimationDuration);
114 mFadeAnimator.play(oa);
115 }
116 mFadeAnimator.addListener(new AnimatorListener() {
Winson Chung760e5372010-12-15 13:14:23 -0800117 public void onAnimationStart(Animator animation) {}
118 public void onAnimationRepeat(Animator animation) {}
119 public void onAnimationEnd(Animator animation) {
120 onEndOrCancel();
121 }
122 public void onAnimationCancel(Animator animation) {
123 onEndOrCancel();
124 }
125 private void onEndOrCancel() {
Michael Jurkab8e14472010-12-20 16:06:10 -0800126 for (View view : mOverlappingViews) {
127 view.setVisibility(INVISIBLE);
128 }
129 mFadeAnimator = null;
Winson Chung760e5372010-12-15 13:14:23 -0800130 }
131 });
Winson Chung760e5372010-12-15 13:14:23 -0800132 }
Michael Jurkab8e14472010-12-20 16:06:10 -0800133 mFadeAnimator.start();
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700134 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700135 }
136 }
137
138 public void onDragEnd() {
Adam Cohencdc30d52010-12-01 15:09:47 -0800139 if (!mDragAndDropEnabled) return;
Winson Chung760e5372010-12-15 13:14:23 -0800140 if (mActive) mActive = false;
Adam Cohencdc30d52010-12-01 15:09:47 -0800141
Winson Chung760e5372010-12-15 13:14:23 -0800142 // Fade out this icon
143 if (mFadeAnimator != null) mFadeAnimator.cancel();
Michael Jurka800242b2010-12-16 11:39:26 -0800144 mFadeAnimator = new AnimatorSet();
145 Animator infoButtonAnimator = ObjectAnimator.ofFloat(this, "alpha", 0.0f);
146 infoButtonAnimator.setDuration(sFadeOutAnimationDuration);
Winson Chung760e5372010-12-15 13:14:23 -0800147 mFadeAnimator.addListener(new AnimatorListener() {
148 public void onAnimationStart(Animator animation) {}
149 public void onAnimationRepeat(Animator animation) {}
150 public void onAnimationEnd(Animator animation) {
151 onEndOrCancel();
152 }
153 public void onAnimationCancel(Animator animation) {
154 onEndOrCancel();
155 }
156 private void onEndOrCancel() {
157 setVisibility(GONE);
158 mFadeAnimator = null;
159 }
160 });
Michael Jurkab8e14472010-12-20 16:06:10 -0800161 mFadeAnimator.play(infoButtonAnimator);
Winson Chung760e5372010-12-15 13:14:23 -0800162
Michael Jurkab8e14472010-12-20 16:06:10 -0800163 // Fade in the overlapping views
164 if (mOverlappingViews != null) {
165 for (View view : mOverlappingViews) {
166 ObjectAnimator oa = ObjectAnimator.ofFloat(view, "alpha", 1.0f);
167 oa.setDuration(sFadeInAnimationDuration);
168 mFadeAnimator.play(oa);
169 view.setVisibility(VISIBLE);
170 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700171 }
Michael Jurkab8e14472010-12-20 16:06:10 -0800172 mFadeAnimator.start();
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700173 }
Patrick Dubroy4ed62782010-08-17 15:11:18 -0700174}