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 | |
Sunny Goyal | e969c68 | 2017-12-05 16:56:18 -0800 | [diff] [blame] | 19 | import static com.android.launcher3.LauncherState.ALL_APPS; |
Sunny Goyal | e969c68 | 2017-12-05 16:56:18 -0800 | [diff] [blame] | 20 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 21 | import android.content.Context; |
Tony Wickham | d6b4037 | 2015-09-23 18:37:57 -0700 | [diff] [blame] | 22 | import android.graphics.Rect; |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 23 | import android.graphics.drawable.Drawable; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 24 | import android.util.AttributeSet; |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 25 | import android.view.LayoutInflater; |
Adam Cohen | a5f4e48 | 2013-10-11 12:10:28 -0700 | [diff] [blame] | 26 | import android.view.MotionEvent; |
Winson | a49b1f7 | 2015-10-16 14:57:24 -0700 | [diff] [blame] | 27 | import android.view.View; |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 28 | import android.view.ViewDebug; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 29 | import android.widget.FrameLayout; |
Adam Cohen | 61f560d | 2013-09-30 15:58:20 -0700 | [diff] [blame] | 30 | import android.widget.TextView; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 31 | |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 32 | import com.android.launcher3.config.FeatureFlags; |
Hyunyoung Song | aa95365 | 2016-04-19 18:30:24 -0700 | [diff] [blame] | 33 | import com.android.launcher3.logging.UserEventDispatcher; |
Sunny Goyal | e969c68 | 2017-12-05 16:56:18 -0800 | [diff] [blame] | 34 | import com.android.launcher3.userevent.nano.LauncherLogProto.Action; |
Sunny Goyal | 6c46a6d | 2016-11-23 02:24:32 +0530 | [diff] [blame] | 35 | import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType; |
Sunny Goyal | e969c68 | 2017-12-05 16:56:18 -0800 | [diff] [blame] | 36 | import com.android.launcher3.userevent.nano.LauncherLogProto.ControlType; |
Hyunyoung Song | ddec1c7 | 2016-04-12 18:32:04 -0700 | [diff] [blame] | 37 | import com.android.launcher3.userevent.nano.LauncherLogProto.Target; |
| 38 | |
Winson Chung | 8f1eff7 | 2015-05-28 17:33:40 -0700 | [diff] [blame] | 39 | public class Hotseat extends FrameLayout |
Hyunyoung Song | df7ef68 | 2016-10-06 17:52:22 -0700 | [diff] [blame] | 40 | implements UserEventDispatcher.LogContainerProvider { |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 41 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 42 | private CellLayout mContent; |
| 43 | |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 44 | private Launcher mLauncher; |
| 45 | |
Sunny Goyal | 4ffec48 | 2016-02-09 11:28:52 -0800 | [diff] [blame] | 46 | @ViewDebug.ExportedProperty(category = "launcher") |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 47 | private final boolean mHasVerticalHotseat; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 48 | |
| 49 | public Hotseat(Context context) { |
| 50 | this(context, null); |
| 51 | } |
| 52 | |
| 53 | public Hotseat(Context context, AttributeSet attrs) { |
| 54 | this(context, attrs, 0); |
| 55 | } |
| 56 | |
| 57 | public Hotseat(Context context, AttributeSet attrs, int defStyle) { |
| 58 | super(context, attrs, defStyle); |
Tony | 2fd0208 | 2016-10-07 12:50:01 -0700 | [diff] [blame] | 59 | mLauncher = Launcher.getLauncher(context); |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 60 | mHasVerticalHotseat = mLauncher.getDeviceProfile().isVerticalBarLayout(); |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 61 | } |
| 62 | |
Tony Wickham | 95cdb3a | 2016-02-18 14:37:07 -0800 | [diff] [blame] | 63 | public CellLayout getLayout() { |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 64 | return mContent; |
| 65 | } |
Winson Chung | 11a1a53 | 2013-09-13 11:14:45 -0700 | [diff] [blame] | 66 | |
| 67 | /** |
Winson Chung | c393b07 | 2015-05-20 15:03:13 -0700 | [diff] [blame] | 68 | * Returns whether there are other icons than the all apps button in the hotseat. |
| 69 | */ |
| 70 | public boolean hasIcons() { |
| 71 | return mContent.getShortcutsAndWidgets().getChildCount() > 1; |
| 72 | } |
| 73 | |
| 74 | /** |
Winson Chung | 11a1a53 | 2013-09-13 11:14:45 -0700 | [diff] [blame] | 75 | * Registers the specified listener on the cell layout of the hotseat. |
| 76 | */ |
| 77 | @Override |
| 78 | public void setOnLongClickListener(OnLongClickListener l) { |
| 79 | mContent.setOnLongClickListener(l); |
| 80 | } |
Tony Wickham | 6cbd222 | 2015-11-09 17:51:08 -0800 | [diff] [blame] | 81 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 82 | /* Get the orientation invariant order of the item in the hotseat for persistence. */ |
| 83 | int getOrderInHotseat(int x, int y) { |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 84 | return mHasVerticalHotseat ? (mContent.getCountY() - y - 1) : x; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 85 | } |
Hyunyoung Song | 31178b8 | 2015-02-24 14:12:51 -0800 | [diff] [blame] | 86 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 87 | /* Get the orientation specific coordinates given an invariant order in the hotseat. */ |
| 88 | int getCellXFromOrder(int rank) { |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 89 | return mHasVerticalHotseat ? 0 : rank; |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 90 | } |
Hyunyoung Song | 31178b8 | 2015-02-24 14:12:51 -0800 | [diff] [blame] | 91 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 92 | int getCellYFromOrder(int rank) { |
Sunny Goyal | 4f3e938 | 2015-06-05 00:13:25 -0700 | [diff] [blame] | 93 | return mHasVerticalHotseat ? (mContent.getCountY() - (rank + 1)) : 0; |
Hyunyoung Song | 31178b8 | 2015-02-24 14:12:51 -0800 | [diff] [blame] | 94 | } |
| 95 | |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 96 | @Override |
| 97 | protected void onFinishInflate() { |
| 98 | super.onFinishInflate(); |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 99 | DeviceProfile grid = mLauncher.getDeviceProfile(); |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 100 | mContent = (CellLayout) findViewById(R.id.layout); |
Sunny Goyal | c13403c | 2016-11-18 23:44:48 -0800 | [diff] [blame] | 101 | if (grid.isVerticalBarLayout()) { |
| 102 | mContent.setGridSize(1, grid.inv.numHotseatIcons); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 103 | } else { |
Sunny Goyal | c13403c | 2016-11-18 23:44:48 -0800 | [diff] [blame] | 104 | mContent.setGridSize(grid.inv.numHotseatIcons, 1); |
Winson Chung | 5f8afe6 | 2013-08-12 16:19:28 -0700 | [diff] [blame] | 105 | } |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 106 | |
| 107 | resetLayout(); |
| 108 | } |
| 109 | |
| 110 | void resetLayout() { |
| 111 | mContent.removeAllViewsInLayout(); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 112 | |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 113 | if (!FeatureFlags.NO_ALL_APPS_ICON) { |
| 114 | // Add the Apps button |
| 115 | Context context = getContext(); |
Sunny Goyal | 55cb70b | 2016-11-12 09:58:29 -0800 | [diff] [blame] | 116 | DeviceProfile grid = mLauncher.getDeviceProfile(); |
| 117 | int allAppsButtonRank = grid.inv.getAllAppsButtonRank(); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 118 | |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 119 | LayoutInflater inflater = LayoutInflater.from(context); |
| 120 | TextView allAppsButton = (TextView) |
| 121 | inflater.inflate(R.layout.all_apps_button, mContent, false); |
| 122 | Drawable d = context.getResources().getDrawable(R.drawable.all_apps_button_icon); |
Sunny Goyal | 55cb70b | 2016-11-12 09:58:29 -0800 | [diff] [blame] | 123 | d.setBounds(0, 0, grid.iconSizePx, grid.iconSizePx); |
Adam Cohen | 71b0473 | 2014-06-11 10:36:14 -0700 | [diff] [blame] | 124 | |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 125 | int scaleDownPx = getResources().getDimensionPixelSize(R.dimen.all_apps_button_scale_down); |
| 126 | Rect bounds = d.getBounds(); |
| 127 | d.setBounds(bounds.left, bounds.top + scaleDownPx / 2, bounds.right - scaleDownPx, |
| 128 | bounds.bottom - scaleDownPx / 2); |
| 129 | allAppsButton.setCompoundDrawables(null, d, null, null); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 130 | |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 131 | allAppsButton.setContentDescription(context.getString(R.string.all_apps_button_label)); |
| 132 | allAppsButton.setOnKeyListener(new HotseatIconKeyEventListener()); |
| 133 | if (mLauncher != null) { |
Sunny Goyal | e969c68 | 2017-12-05 16:56:18 -0800 | [diff] [blame] | 134 | allAppsButton.setOnClickListener((v) -> { |
| 135 | if (!mLauncher.isInState(ALL_APPS)) { |
| 136 | mLauncher.getUserEventDispatcher().logActionOnControl(Action.Touch.TAP, |
| 137 | ControlType.ALL_APPS_BUTTON); |
| 138 | mLauncher.getStateManager().goToState(ALL_APPS); |
| 139 | } |
| 140 | }); |
Sunny Goyal | bb011da | 2016-06-15 15:42:29 -0700 | [diff] [blame] | 141 | allAppsButton.setOnFocusChangeListener(mLauncher.mFocusHandler); |
| 142 | } |
| 143 | |
| 144 | // Note: We do this to ensure that the hotseat is always laid out in the orientation of |
| 145 | // the hotseat in order regardless of which orientation they were added |
| 146 | int x = getCellXFromOrder(allAppsButtonRank); |
| 147 | int y = getCellYFromOrder(allAppsButtonRank); |
| 148 | CellLayout.LayoutParams lp = new CellLayout.LayoutParams(x, y, 1, 1); |
| 149 | lp.canReorder = false; |
| 150 | mContent.addViewToCellLayout(allAppsButton, -1, allAppsButton.getId(), lp, true); |
Winson Chung | c58497e | 2013-09-03 17:48:37 -0700 | [diff] [blame] | 151 | } |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 152 | } |
Adam Cohen | e25af79 | 2013-06-06 23:08:25 -0700 | [diff] [blame] | 153 | |
Adam Cohen | a5f4e48 | 2013-10-11 12:10:28 -0700 | [diff] [blame] | 154 | @Override |
| 155 | public boolean onInterceptTouchEvent(MotionEvent ev) { |
| 156 | // We don't want any clicks to go through to the hotseat unless the workspace is in |
Sunny Goyal | 4583d09 | 2016-08-17 11:11:48 -0700 | [diff] [blame] | 157 | // the normal state or an accessible drag is in progress. |
Tony Wickham | 0c7852f | 2016-12-02 14:47:04 -0800 | [diff] [blame] | 158 | return !mLauncher.getWorkspace().workspaceIconsCanBeDragged() && |
Sunny Goyal | 4583d09 | 2016-08-17 11:11:48 -0700 | [diff] [blame] | 159 | !mLauncher.getAccessibilityDelegate().isInAccessibleDrag(); |
Adam Cohen | a5f4e48 | 2013-10-11 12:10:28 -0700 | [diff] [blame] | 160 | } |
Winson Chung | 8f1eff7 | 2015-05-28 17:33:40 -0700 | [diff] [blame] | 161 | |
| 162 | @Override |
Hyunyoung Song | df7ef68 | 2016-10-06 17:52:22 -0700 | [diff] [blame] | 163 | public void fillInLogContainerData(View v, ItemInfo info, Target target, Target targetParent) { |
Hyunyoung Song | ddec1c7 | 2016-04-12 18:32:04 -0700 | [diff] [blame] | 164 | target.gridX = info.cellX; |
| 165 | target.gridY = info.cellY; |
Sunny Goyal | 6c46a6d | 2016-11-23 02:24:32 +0530 | [diff] [blame] | 166 | targetParent.containerType = ContainerType.HOTSEAT; |
Winson Chung | 8f1eff7 | 2015-05-28 17:33:40 -0700 | [diff] [blame] | 167 | } |
Winson Chung | 3d503fb | 2011-07-13 17:25:49 -0700 | [diff] [blame] | 168 | } |