Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 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 | |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame^] | 17 | package com.android.launcher3; |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 18 | |
| 19 | import android.content.ComponentName; |
| 20 | import android.content.Context; |
Winson Chung | a62e9fd | 2011-07-11 15:20:48 -0700 | [diff] [blame] | 21 | import android.content.res.ColorStateList; |
Winson Chung | 201bc82 | 2011-06-20 15:41:53 -0700 | [diff] [blame] | 22 | import android.content.res.Configuration; |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 23 | import android.content.res.Resources; |
Winson Chung | 967289b | 2011-06-30 18:09:30 -0700 | [diff] [blame] | 24 | import android.graphics.drawable.TransitionDrawable; |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 25 | import android.util.AttributeSet; |
| 26 | import android.view.View; |
Winson Chung | a6427b1 | 2011-07-27 10:53:39 -0700 | [diff] [blame] | 27 | import android.view.ViewGroup; |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 28 | |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame^] | 29 | import com.android.launcher3.R; |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 30 | |
Winson Chung | 61fa419 | 2011-06-12 15:15:29 -0700 | [diff] [blame] | 31 | public class InfoDropTarget extends ButtonDropTarget { |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 32 | |
Winson Chung | a62e9fd | 2011-07-11 15:20:48 -0700 | [diff] [blame] | 33 | private ColorStateList mOriginalTextColor; |
Winson Chung | 967289b | 2011-06-30 18:09:30 -0700 | [diff] [blame] | 34 | private TransitionDrawable mDrawable; |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 35 | |
| 36 | public InfoDropTarget(Context context, AttributeSet attrs) { |
| 37 | this(context, attrs, 0); |
| 38 | } |
| 39 | |
| 40 | public InfoDropTarget(Context context, AttributeSet attrs, int defStyle) { |
| 41 | super(context, attrs, defStyle); |
| 42 | } |
| 43 | |
| 44 | @Override |
| 45 | protected void onFinishInflate() { |
| 46 | super.onFinishInflate(); |
| 47 | |
Winson Chung | a6427b1 | 2011-07-27 10:53:39 -0700 | [diff] [blame] | 48 | mOriginalTextColor = getTextColors(); |
Winson Chung | 201bc82 | 2011-06-20 15:41:53 -0700 | [diff] [blame] | 49 | |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 50 | // Get the hover color |
| 51 | Resources r = getResources(); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 52 | mHoverColor = r.getColor(R.color.info_target_hover_tint); |
Winson Chung | 947245b | 2012-05-15 16:34:19 -0700 | [diff] [blame] | 53 | mDrawable = (TransitionDrawable) getCurrentDrawable(); |
Fabrice Di Meglio | cc11f74 | 2012-12-18 16:25:49 -0800 | [diff] [blame] | 54 | if (null != mDrawable) { |
| 55 | mDrawable.setCrossFadeEnabled(true); |
| 56 | } |
Winson Chung | 201bc82 | 2011-06-20 15:41:53 -0700 | [diff] [blame] | 57 | |
| 58 | // Remove the text in the Phone UI in landscape |
| 59 | int orientation = getResources().getConfiguration().orientation; |
| 60 | if (orientation == Configuration.ORIENTATION_LANDSCAPE) { |
| 61 | if (!LauncherApplication.isScreenLarge()) { |
Winson Chung | a6427b1 | 2011-07-27 10:53:39 -0700 | [diff] [blame] | 62 | setText(""); |
Winson Chung | 201bc82 | 2011-06-20 15:41:53 -0700 | [diff] [blame] | 63 | } |
| 64 | } |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 65 | } |
| 66 | |
Winson Chung | 11a4937 | 2012-04-27 15:12:38 -0700 | [diff] [blame] | 67 | private boolean isFromAllApps(DragSource source) { |
| 68 | return (source instanceof AppsCustomizePagedView); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | @Override |
| 72 | public boolean acceptDrop(DragObject d) { |
| 73 | // acceptDrop is called just before onDrop. We do the work here, rather than |
| 74 | // in onDrop, because it allows us to reject the drop (by returning false) |
| 75 | // so that the object being dragged isn't removed from the drag source. |
| 76 | ComponentName componentName = null; |
| 77 | if (d.dragInfo instanceof ApplicationInfo) { |
| 78 | componentName = ((ApplicationInfo) d.dragInfo).componentName; |
| 79 | } else if (d.dragInfo instanceof ShortcutInfo) { |
| 80 | componentName = ((ShortcutInfo) d.dragInfo).intent.getComponent(); |
Winson Chung | 11a4937 | 2012-04-27 15:12:38 -0700 | [diff] [blame] | 81 | } else if (d.dragInfo instanceof PendingAddItemInfo) { |
| 82 | componentName = ((PendingAddItemInfo) d.dragInfo).componentName; |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 83 | } |
| 84 | if (componentName != null) { |
| 85 | mLauncher.startApplicationDetailsActivity(componentName); |
| 86 | } |
Winson Chung | 7bd1bbb | 2012-02-13 18:29:29 -0800 | [diff] [blame] | 87 | |
| 88 | // There is no post-drop animation, so clean up the DragView now |
| 89 | d.deferDragViewCleanupPostAnimation = false; |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 90 | return false; |
| 91 | } |
| 92 | |
| 93 | @Override |
| 94 | public void onDragStart(DragSource source, Object info, int dragAction) { |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 95 | boolean isVisible = true; |
| 96 | |
Winson Chung | 11a4937 | 2012-04-27 15:12:38 -0700 | [diff] [blame] | 97 | // Hide this button unless we are dragging something from AllApps |
| 98 | if (!isFromAllApps(source)) { |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 99 | isVisible = false; |
| 100 | } |
| 101 | |
| 102 | mActive = isVisible; |
Winson Chung | aaa530a | 2011-07-11 21:06:30 -0700 | [diff] [blame] | 103 | mDrawable.resetTransition(); |
Winson Chung | a6427b1 | 2011-07-27 10:53:39 -0700 | [diff] [blame] | 104 | setTextColor(mOriginalTextColor); |
| 105 | ((ViewGroup) getParent()).setVisibility(isVisible ? View.VISIBLE : View.GONE); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | @Override |
| 109 | public void onDragEnd() { |
| 110 | super.onDragEnd(); |
| 111 | mActive = false; |
| 112 | } |
| 113 | |
| 114 | public void onDragEnter(DragObject d) { |
| 115 | super.onDragEnter(d); |
| 116 | |
Winson Chung | 967289b | 2011-06-30 18:09:30 -0700 | [diff] [blame] | 117 | mDrawable.startTransition(mTransitionDuration); |
Winson Chung | a6427b1 | 2011-07-27 10:53:39 -0700 | [diff] [blame] | 118 | setTextColor(mHoverColor); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | public void onDragExit(DragObject d) { |
| 122 | super.onDragExit(d); |
| 123 | |
Winson Chung | aaa530a | 2011-07-11 21:06:30 -0700 | [diff] [blame] | 124 | if (!d.dragComplete) { |
| 125 | mDrawable.resetTransition(); |
Winson Chung | a6427b1 | 2011-07-27 10:53:39 -0700 | [diff] [blame] | 126 | setTextColor(mOriginalTextColor); |
Winson Chung | aaa530a | 2011-07-11 21:06:30 -0700 | [diff] [blame] | 127 | } |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 128 | } |
| 129 | } |