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 | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 21 | import android.util.AttributeSet; |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 22 | |
Kenny Guy | f07af7b | 2014-07-31 11:39:16 +0100 | [diff] [blame] | 23 | import com.android.launcher3.compat.UserHandleCompat; |
| 24 | |
Winson Chung | 61fa419 | 2011-06-12 15:15:29 -0700 | [diff] [blame] | 25 | public class InfoDropTarget extends ButtonDropTarget { |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 26 | |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 27 | public InfoDropTarget(Context context, AttributeSet attrs) { |
| 28 | this(context, attrs, 0); |
| 29 | } |
| 30 | |
| 31 | public InfoDropTarget(Context context, AttributeSet attrs, int defStyle) { |
| 32 | super(context, attrs, defStyle); |
| 33 | } |
| 34 | |
| 35 | @Override |
| 36 | protected void onFinishInflate() { |
| 37 | super.onFinishInflate(); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 38 | // Get the hover color |
Sunny Goyal | fa401a1 | 2015-04-10 13:45:42 -0700 | [diff] [blame] | 39 | mHoverColor = getResources().getColor(R.color.info_target_hover_tint); |
Adam Cohen | 18bbc6a | 2014-06-03 21:43:24 -0700 | [diff] [blame] | 40 | |
Sunny Goyal | 40b626b | 2015-06-04 22:40:14 -0700 | [diff] [blame] | 41 | setDrawable(R.drawable.ic_info_launcher); |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | public static void startDetailsActivityForInfo(Object info, Launcher launcher) { |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 45 | ComponentName componentName = null; |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 46 | if (info instanceof AppInfo) { |
| 47 | componentName = ((AppInfo) info).componentName; |
| 48 | } else if (info instanceof ShortcutInfo) { |
| 49 | componentName = ((ShortcutInfo) info).intent.getComponent(); |
| 50 | } else if (info instanceof PendingAddItemInfo) { |
| 51 | componentName = ((PendingAddItemInfo) info).componentName; |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 52 | } |
Kenny Guy | f07af7b | 2014-07-31 11:39:16 +0100 | [diff] [blame] | 53 | final UserHandleCompat user; |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 54 | if (info instanceof ItemInfo) { |
| 55 | user = ((ItemInfo) info).user; |
Kenny Guy | f07af7b | 2014-07-31 11:39:16 +0100 | [diff] [blame] | 56 | } else { |
| 57 | user = UserHandleCompat.myUserHandle(); |
| 58 | } |
| 59 | |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 60 | if (componentName != null) { |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 61 | launcher.startApplicationDetailsActivity(componentName, user); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 62 | } |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | @Override |
Sunny Goyal | fa401a1 | 2015-04-10 13:45:42 -0700 | [diff] [blame] | 66 | protected boolean supportsDrop(DragSource source, Object info) { |
Sunny Goyal | 1a70cef | 2015-04-22 11:29:51 -0700 | [diff] [blame] | 67 | return source.supportsAppInfoDropTarget() && supportsDrop(getContext(), info); |
| 68 | } |
| 69 | |
| 70 | public static boolean supportsDrop(Context context, Object info) { |
Sunny Goyal | d7da55f | 2015-06-12 12:25:45 -0700 | [diff] [blame] | 71 | return info instanceof AppInfo || info instanceof PendingAddItemInfo; |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | @Override |
Sunny Goyal | fa401a1 | 2015-04-10 13:45:42 -0700 | [diff] [blame] | 75 | void completeDrop(DragObject d) { |
| 76 | startDetailsActivityForInfo(d.dragInfo, mLauncher); |
Winson Chung | 4c98d92 | 2011-05-31 16:50:48 -0700 | [diff] [blame] | 77 | } |
| 78 | } |