Winson Chung | 3d503fb | 2011-07-13 17:25:49 -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 | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 18 | |
Tony Wickham | ef0c537 | 2016-08-22 15:23:01 -0700 | [diff] [blame^] | 19 | import android.animation.Animator; |
| 20 | import android.animation.AnimatorListenerAdapter; |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 21 | import android.animation.ArgbEvaluator; |
| 22 | import android.animation.ValueAnimator; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 23 | import android.content.Context; |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 24 | import android.graphics.Color; |
Tony Wickham | d6b4037 | 2015-09-23 18:37:57 -0700 | [diff] [blame] | 25 | import android.graphics.Rect; |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 26 | import android.graphics.drawable.ColorDrawable; |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 27 | import android.graphics.drawable.Drawable; |
Hyunyoung Song | e4be3b3 | 2016-07-18 16:35:10 -0700 | [diff] [blame] | 28 | import android.support.v4.graphics.ColorUtils; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 29 | import android.util.AttributeSet; |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 30 | import android.view.LayoutInflater; |
Adam Cohen | a5f4e48 | 2013-10-11 12:10:28 -0700 | [diff] [blame] | 31 | import android.view.MotionEvent; |
Winson | a49b1f7 | 2015-10-16 14:57:24 -0700 | [diff] [blame] | 32 | import android.view.View; |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 33 | import android.view.ViewDebug; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 34 | import android.widget.FrameLayout; |
Adam Cohen | 61f560d | 2013-09-30 15:58:20 -0700 | [diff] [blame] | 35 | import android.widget.TextView; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 36 | |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 37 | import com.android.launcher3.config.FeatureFlags; |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 38 | import com.android.launcher3.dynamicui.ExtractedColors; |
Hyunyoung Song | aa95365 | 2016-04-19 18:30:24 -0700 | [diff] [blame] | 39 | import com.android.launcher3.logging.UserEventDispatcher; |
Hyunyoung Song | ddec1c7 | 2016-04-12 18:32:04 -0700 | [diff] [blame] | 40 | import com.android.launcher3.userevent.nano.LauncherLogProto; |
| 41 | import com.android.launcher3.userevent.nano.LauncherLogProto.Target; |
| 42 | |
Winson Chung | 8f1eff7 | 2015-05-28 17:33:40 -0700 | [diff] [blame] | 43 | public class Hotseat extends FrameLayout |
Winson | 1f06427 | 2016-07-18 17:18:02 -0700 | [diff] [blame] | 44 | implements UserEventDispatcher.LaunchSourceProvider { |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 45 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 46 | private CellLayout mContent; |
| 47 | |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 48 | private Launcher mLauncher; |
| 49 | |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 50 | @ViewDebug.ExportedProperty(category = "launcher") |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 51 | private final boolean mHasVerticalHotseat; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 52 | |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 53 | @ViewDebug.ExportedProperty(category = "launcher") |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 54 | private int mBackgroundColor; |
| 55 | @ViewDebug.ExportedProperty(category = "launcher") |
| 56 | private ColorDrawable mBackground; |
Tony Wickham | ef0c537 | 2016-08-22 15:23:01 -0700 | [diff] [blame^] | 57 | private ValueAnimator mBackgroundColorAnimator; |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 58 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 59 | public Hotseat(Context context) { |
| 60 | this(context, null); |
| 61 | } |
| 62 | |
| 63 | public Hotseat(Context context, AttributeSet attrs) { |
| 64 | this(context, attrs, 0); |
| 65 | } |
| 66 | |
| 67 | public Hotseat(Context context, AttributeSet attrs, int defStyle) { |
| 68 | super(context, attrs, defStyle); |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 69 | mLauncher = (Launcher) context; |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 70 | mHasVerticalHotseat = mLauncher.getDeviceProfile().isVerticalBarLayout(); |
Hyunyoung Song | e4be3b3 | 2016-07-18 16:35:10 -0700 | [diff] [blame] | 71 | mBackgroundColor = ColorUtils.setAlphaComponent( |
| 72 | context.getColor(R.color.all_apps_container_color), 0); |
| 73 | mBackground = new ColorDrawable(mBackgroundColor); |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 74 | setBackground(mBackground); |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Tony Wickham | 95cdb3a | 2016-02-18 14:37:07 -0800 | [diff] [blame] | 77 | public CellLayout getLayout() { |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 78 | return mContent; |
| 79 | } |
Winson Chung | 11a1a53 | 2013-09-13 11:14:45 -0700 | [diff] [blame] | 80 | |
| 81 | /** |
Winson Chung | c393b07 | 2015-05-20 15:03:13 -0700 | [diff] [blame] | 82 | * Returns whether there are other icons than the all apps button in the hotseat. |
| 83 | */ |
| 84 | public boolean hasIcons() { |
| 85 | return mContent.getShortcutsAndWidgets().getChildCount() > 1; |
| 86 | } |
| 87 | |
| 88 | /** |
Winson Chung | 11a1a53 | 2013-09-13 11:14:45 -0700 | [diff] [blame] | 89 | * Registers the specified listener on the cell layout of the hotseat. |
| 90 | */ |
| 91 | @Override |
| 92 | public void setOnLongClickListener(OnLongClickListener l) { |
| 93 | mContent.setOnLongClickListener(l); |
| 94 | } |
Tony Wickham | 6cbd222 | 2015-11-09 17:51:08 -0800 | [diff] [blame] | 95 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 96 | /* Get the orientation invariant order of the item in the hotseat for persistence. */ |
| 97 | int getOrderInHotseat(int x, int y) { |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 98 | return mHasVerticalHotseat ? (mContent.getCountY() - y - 1) : x; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 99 | } |
Hyunyoung Song | 31178b8 | 2015-02-24 14:12:51 -0800 | [diff] [blame] | 100 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 101 | /* Get the orientation specific coordinates given an invariant order in the hotseat. */ |
| 102 | int getCellXFromOrder(int rank) { |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 103 | return mHasVerticalHotseat ? 0 : rank; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 104 | } |
Hyunyoung Song | 31178b8 | 2015-02-24 14:12:51 -0800 | [diff] [blame] | 105 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 106 | int getCellYFromOrder(int rank) { |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 107 | return mHasVerticalHotseat ? (mContent.getCountY() - (rank + 1)) : 0; |
Hyunyoung Song | 31178b8 | 2015-02-24 14:12:51 -0800 | [diff] [blame] | 108 | } |
| 109 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 110 | @Override |
| 111 | protected void onFinishInflate() { |
| 112 | super.onFinishInflate(); |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 113 | DeviceProfile grid = mLauncher.getDeviceProfile(); |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 114 | mContent = (CellLayout) findViewById(R.id.layout); |
Sunny Goyal | c620560 | 2015-05-21 20:46:33 -0700 | [diff] [blame] | 115 | if (grid.isLandscape && !grid.isLargeTablet) { |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 116 | mContent.setGridSize(1, (int) grid.inv.numHotseatIcons); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 117 | } else { |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 118 | mContent.setGridSize((int) grid.inv.numHotseatIcons, 1); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 119 | } |
Andrew Flynn | 0dca1ec | 2012-02-29 13:33:22 -0800 | [diff] [blame] | 120 | mContent.setIsHotseat(true); |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 121 | |
| 122 | resetLayout(); |
| 123 | } |
| 124 | |
| 125 | void resetLayout() { |
| 126 | mContent.removeAllViewsInLayout(); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 127 | |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 128 | if (!FeatureFlags.NO_ALL_APPS_ICON) { |
| 129 | // Add the Apps button |
| 130 | Context context = getContext(); |
| 131 | int allAppsButtonRank = mLauncher.getDeviceProfile().inv.getAllAppsButtonRank(); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 132 | |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 133 | LayoutInflater inflater = LayoutInflater.from(context); |
| 134 | TextView allAppsButton = (TextView) |
| 135 | inflater.inflate(R.layout.all_apps_button, mContent, false); |
| 136 | Drawable d = context.getResources().getDrawable(R.drawable.all_apps_button_icon); |
Adam Cohen | 71b0473 | 2014-06-11 10:36:14 -0700 | [diff] [blame] | 137 | |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 138 | mLauncher.resizeIconDrawable(d); |
| 139 | int scaleDownPx = getResources().getDimensionPixelSize(R.dimen.all_apps_button_scale_down); |
| 140 | Rect bounds = d.getBounds(); |
| 141 | d.setBounds(bounds.left, bounds.top + scaleDownPx / 2, bounds.right - scaleDownPx, |
| 142 | bounds.bottom - scaleDownPx / 2); |
| 143 | allAppsButton.setCompoundDrawables(null, d, null, null); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 144 | |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 145 | allAppsButton.setContentDescription(context.getString(R.string.all_apps_button_label)); |
| 146 | allAppsButton.setOnKeyListener(new HotseatIconKeyEventListener()); |
| 147 | if (mLauncher != null) { |
| 148 | mLauncher.setAllAppsButton(allAppsButton); |
| 149 | allAppsButton.setOnTouchListener(mLauncher.getHapticFeedbackTouchListener()); |
| 150 | allAppsButton.setOnClickListener(mLauncher); |
| 151 | allAppsButton.setOnLongClickListener(mLauncher); |
| 152 | allAppsButton.setOnFocusChangeListener(mLauncher.mFocusHandler); |
| 153 | } |
| 154 | |
| 155 | // Note: We do this to ensure that the hotseat is always laid out in the orientation of |
| 156 | // the hotseat in order regardless of which orientation they were added |
| 157 | int x = getCellXFromOrder(allAppsButtonRank); |
| 158 | int y = getCellYFromOrder(allAppsButtonRank); |
| 159 | CellLayout.LayoutParams lp = new CellLayout.LayoutParams(x, y, 1, 1); |
| 160 | lp.canReorder = false; |
| 161 | mContent.addViewToCellLayout(allAppsButton, -1, allAppsButton.getId(), lp, true); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 162 | } |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 163 | } |
Adam Cohen | e25af79 | 2013-06-06 23:08:25 -0700 | [diff] [blame] | 164 | |
Adam Cohen | a5f4e48 | 2013-10-11 12:10:28 -0700 | [diff] [blame] | 165 | @Override |
| 166 | public boolean onInterceptTouchEvent(MotionEvent ev) { |
| 167 | // We don't want any clicks to go through to the hotseat unless the workspace is in |
| 168 | // the normal state. |
Adam Cohen | 6c5891a | 2014-07-09 23:53:15 -0700 | [diff] [blame] | 169 | if (mLauncher.getWorkspace().workspaceInModalState()) { |
Adam Cohen | a5f4e48 | 2013-10-11 12:10:28 -0700 | [diff] [blame] | 170 | return true; |
| 171 | } |
| 172 | return false; |
| 173 | } |
Winson Chung | 8f1eff7 | 2015-05-28 17:33:40 -0700 | [diff] [blame] | 174 | |
| 175 | @Override |
Hyunyoung Song | ddec1c7 | 2016-04-12 18:32:04 -0700 | [diff] [blame] | 176 | public void fillInLaunchSourceData(View v, ItemInfo info, Target target, Target targetParent) { |
Hyunyoung Song | ddec1c7 | 2016-04-12 18:32:04 -0700 | [diff] [blame] | 177 | target.gridX = info.cellX; |
| 178 | target.gridY = info.cellY; |
| 179 | targetParent.containerType = LauncherLogProto.HOTSEAT; |
Winson Chung | 8f1eff7 | 2015-05-28 17:33:40 -0700 | [diff] [blame] | 180 | } |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 181 | |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 182 | public void updateColor(ExtractedColors extractedColors, boolean animate) { |
| 183 | if (!mHasVerticalHotseat) { |
| 184 | int color = extractedColors.getColor(ExtractedColors.HOTSEAT_INDEX, Color.TRANSPARENT); |
Tony Wickham | ef0c537 | 2016-08-22 15:23:01 -0700 | [diff] [blame^] | 185 | if (mBackgroundColorAnimator != null) { |
| 186 | mBackgroundColorAnimator.cancel(); |
| 187 | } |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 188 | if (!animate) { |
| 189 | setBackgroundColor(color); |
| 190 | } else { |
Tony Wickham | ef0c537 | 2016-08-22 15:23:01 -0700 | [diff] [blame^] | 191 | mBackgroundColorAnimator = ValueAnimator.ofInt(mBackgroundColor, color); |
| 192 | mBackgroundColorAnimator.setEvaluator(new ArgbEvaluator()); |
| 193 | mBackgroundColorAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 194 | @Override |
| 195 | public void onAnimationUpdate(ValueAnimator animation) { |
| 196 | mBackground.setColor((Integer) animation.getAnimatedValue()); |
| 197 | } |
| 198 | }); |
Tony Wickham | ef0c537 | 2016-08-22 15:23:01 -0700 | [diff] [blame^] | 199 | mBackgroundColorAnimator.addListener(new AnimatorListenerAdapter() { |
| 200 | @Override |
| 201 | public void onAnimationEnd(Animator animation) { |
| 202 | mBackgroundColorAnimator = null; |
| 203 | } |
| 204 | }); |
| 205 | mBackgroundColorAnimator.start(); |
Tony Wickham | 462b5cc | 2016-04-01 16:00:49 -0700 | [diff] [blame] | 206 | } |
| 207 | mBackgroundColor = color; |
| 208 | } |
| 209 | } |
Hyunyoung Song | a0c5647 | 2016-06-20 13:54:42 -0700 | [diff] [blame] | 210 | |
| 211 | public void setBackgroundTransparent(boolean enable) { |
Hyunyoung Song | a0c5647 | 2016-06-20 13:54:42 -0700 | [diff] [blame] | 212 | if (enable) { |
Hyunyoung Song | 45eb757 | 2016-07-01 18:04:07 -0700 | [diff] [blame] | 213 | mBackground.setAlpha(0); |
Hyunyoung Song | a0c5647 | 2016-06-20 13:54:42 -0700 | [diff] [blame] | 214 | } else { |
Hyunyoung Song | 45eb757 | 2016-07-01 18:04:07 -0700 | [diff] [blame] | 215 | mBackground.setAlpha(255); |
Hyunyoung Song | a0c5647 | 2016-06-20 13:54:42 -0700 | [diff] [blame] | 216 | } |
| 217 | } |
Hyunyoung Song | f7e5e37 | 2016-06-28 12:16:47 -0700 | [diff] [blame] | 218 | |
Hyunyoung Song | e4be3b3 | 2016-07-18 16:35:10 -0700 | [diff] [blame] | 219 | public int getBackgroundDrawableColor() { |
| 220 | return mBackgroundColor; |
Hyunyoung Song | f7e5e37 | 2016-06-28 12:16:47 -0700 | [diff] [blame] | 221 | } |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 222 | } |