blob: cf63e478312ced81559c6c4417eae242bb4a349d [file] [log] [blame]
John Spurlockaf8d6c42014-05-07 17:49:08 -04001/*
2 * Copyright (C) 2014 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.systemui.qs;
18
Rohan Shah3090e792018-04-12 00:01:00 -040019import static android.content.res.Configuration.ORIENTATION_LANDSCAPE;
Jason Monke5b770e2017-03-03 21:49:29 -050020import static com.android.systemui.qs.tileimpl.QSTileImpl.getColorForState;
21
Rohan Shahdb2cfa32018-02-20 11:27:22 -080022import android.annotation.Nullable;
Jason Monk7e53f202016-01-28 10:40:20 -050023import android.content.ComponentName;
John Spurlockaf8d6c42014-05-07 17:49:08 -040024import android.content.Context;
Jorim Jaggie17c4b42014-08-26 17:27:31 +020025import android.content.res.Configuration;
John Spurlock4bf31982014-05-21 13:04:22 -040026import android.content.res.Resources;
Jason Monkcb4b31d2017-05-03 10:37:34 -040027import android.metrics.LogMaker;
Fabian Kozynski407ddb22018-10-03 15:04:56 -040028import android.os.Bundle;
John Spurlockaf8d6c42014-05-07 17:49:08 -040029import android.os.Handler;
30import android.os.Message;
Jason Monke5b770e2017-03-03 21:49:29 -050031import android.service.quicksettings.Tile;
John Spurlockaf8d6c42014-05-07 17:49:08 -040032import android.util.AttributeSet;
Fabian Kozynski0db39af2018-08-31 15:56:45 -040033import android.util.Log;
John Spurlock7f8f22a2014-07-02 18:54:17 -040034import android.view.LayoutInflater;
John Spurlockaf8d6c42014-05-07 17:49:08 -040035import android.view.View;
Jason Monk520ea062015-08-18 14:53:06 -040036import android.widget.LinearLayout;
Jason Monkcb4b31d2017-05-03 10:37:34 -040037
Chris Wren457a21c2015-05-06 17:50:34 -040038import com.android.internal.logging.MetricsLogger;
Tamas Berghammer383db5eb2016-06-22 15:21:38 +010039import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
Jason Monk824ffff2017-04-11 15:49:06 -040040import com.android.settingslib.Utils;
Jason Monkde850bb2017-02-01 19:26:30 -050041import com.android.systemui.Dependency;
John Spurlockaf8d6c42014-05-07 17:49:08 -040042import com.android.systemui.R;
Jason Monke5b770e2017-03-03 21:49:29 -050043import com.android.systemui.plugins.qs.DetailAdapter;
Jason Monk702e2eb2017-03-03 16:53:44 -050044import com.android.systemui.plugins.qs.QSTile;
45import com.android.systemui.plugins.qs.QSTileView;
46import com.android.systemui.qs.QSHost.Callback;
Jason Monkbd6dbb02015-09-03 15:46:25 -040047import com.android.systemui.qs.customize.QSCustomizer;
Jason Monk7e53f202016-01-28 10:40:20 -050048import com.android.systemui.qs.external.CustomTile;
Jorim Jaggi3f48f462014-07-08 16:53:29 +020049import com.android.systemui.settings.BrightnessController;
Muyuan Li3b0f8922016-04-18 19:27:29 -070050import com.android.systemui.settings.ToggleSliderView;
Adrian Roos5fd872e2014-08-12 17:28:58 +020051import com.android.systemui.statusbar.policy.BrightnessMirrorController;
Adrian Roosb01793f2017-08-09 14:34:55 +020052import com.android.systemui.statusbar.policy.BrightnessMirrorController.BrightnessMirrorListener;
Jason Monkcaf37622015-08-18 12:33:50 -040053import com.android.systemui.tuner.TunerService;
54import com.android.systemui.tuner.TunerService.Tunable;
John Spurlockaf8d6c42014-05-07 17:49:08 -040055
56import java.util.ArrayList;
John Spurlockbceed062014-08-10 18:04:16 -040057import java.util.Collection;
John Spurlockaf8d6c42014-05-07 17:49:08 -040058
Rohan Shahd3cf7562018-02-23 11:12:28 -080059/** View that represents the quick settings tile panel (when expanded/pulled down). **/
Adrian Roosb01793f2017-08-09 14:34:55 +020060public class QSPanel extends LinearLayout implements Tunable, Callback, BrightnessMirrorListener {
Jason Monkcaf37622015-08-18 12:33:50 -040061
62 public static final String QS_SHOW_BRIGHTNESS = "qs_show_brightness";
Rohan Shahd3cf7562018-02-23 11:12:28 -080063 public static final String QS_SHOW_HEADER = "qs_show_header";
John Spurlockaf8d6c42014-05-07 17:49:08 -040064
Fabian Kozynski0db39af2018-08-31 15:56:45 -040065 private static final String TAG = "QSPanel";
66
Jason Monkbd6dbb02015-09-03 15:46:25 -040067 protected final Context mContext;
Amin Shaikha07a17b2018-02-23 16:02:52 -050068 protected final ArrayList<TileRecord> mRecords = new ArrayList<>();
Jason Monk11a77442015-05-12 19:29:02 -040069 protected final View mBrightnessView;
John Spurlockaf8d6c42014-05-07 17:49:08 -040070 private final H mHandler = new H();
Jason Monk8c09ac72017-03-16 11:53:40 -040071 private final MetricsLogger mMetricsLogger = Dependency.get(MetricsLogger.class);
Amin Shaikha07a17b2018-02-23 16:02:52 -050072 private final QSTileRevealController mQsTileRevealController;
John Spurlockaf8d6c42014-05-07 17:49:08 -040073
Muyuan Li0e9f5382016-04-27 15:51:15 -070074 protected boolean mExpanded;
Jason Monk1bec6af2016-05-31 15:40:58 -040075 protected boolean mListening;
John Spurlockaf8d6c42014-05-07 17:49:08 -040076
Jason Monke5b770e2017-03-03 21:49:29 -050077 private QSDetail.Callback mCallback;
Jorim Jaggi3f48f462014-07-08 16:53:29 +020078 private BrightnessController mBrightnessController;
Jason Monkbbadff82015-11-06 15:47:26 -050079 protected QSTileHost mHost;
John Spurlockaf8d6c42014-05-07 17:49:08 -040080
Jason Monke5b770e2017-03-03 21:49:29 -050081 protected QSSecurityFooter mFooter;
Rohan Shah3090e792018-04-12 00:01:00 -040082 private PageIndicator mPanelPageIndicator;
83 private PageIndicator mFooterPageIndicator;
Selim Cineke32010a2014-08-20 23:50:41 +020084 private boolean mGridContentVisible = true;
Jason Monk3d5f5512014-07-25 11:17:28 -040085
Jason Monkbd6dbb02015-09-03 15:46:25 -040086 protected QSTileLayout mTileLayout;
87
88 private QSCustomizer mCustomizePanel;
Jason Monk377e7ad2016-02-16 14:03:21 -050089 private Record mDetailRecord;
Jason Monk520ea062015-08-18 14:53:06 -040090
Adrian Roos429c9622016-06-15 13:02:17 -070091 private BrightnessMirrorController mBrightnessMirrorController;
Jason Monke5b770e2017-03-03 21:49:29 -050092 private View mDivider;
Adrian Roos429c9622016-06-15 13:02:17 -070093
John Spurlockaf8d6c42014-05-07 17:49:08 -040094 public QSPanel(Context context) {
95 this(context, null);
96 }
97
98 public QSPanel(Context context, AttributeSet attrs) {
99 super(context, attrs);
100 mContext = context;
101
Jason Monk162011e2016-02-19 08:11:55 -0500102 setOrientation(VERTICAL);
Jason Monk520ea062015-08-18 14:53:06 -0400103
Jason Monk231b0522018-01-04 10:49:55 -0500104 mBrightnessView = LayoutInflater.from(mContext).inflate(
105 R.layout.quick_settings_brightness_dialog, this, false);
Amin Shaikh15781d62018-02-16 16:00:13 -0500106 addView(mBrightnessView);
107
108 mTileLayout = (QSTileLayout) LayoutInflater.from(mContext).inflate(
109 R.layout.qs_paged_tile_layout, this, false);
Jason Monk231b0522018-01-04 10:49:55 -0500110 mTileLayout.setListening(mListening);
Amin Shaikh15781d62018-02-16 16:00:13 -0500111 addView((View) mTileLayout);
112
Rohan Shah3090e792018-04-12 00:01:00 -0400113 mPanelPageIndicator = (PageIndicator) LayoutInflater.from(context).inflate(
Amin Shaikh15781d62018-02-16 16:00:13 -0500114 R.layout.qs_page_indicator, this, false);
Rohan Shah3090e792018-04-12 00:01:00 -0400115 addView(mPanelPageIndicator);
Amin Shaikh15781d62018-02-16 16:00:13 -0500116
Rohan Shah3090e792018-04-12 00:01:00 -0400117 ((PagedTileLayout) mTileLayout).setPageIndicator(mPanelPageIndicator);
Amin Shaikha07a17b2018-02-23 16:02:52 -0500118 mQsTileRevealController = new QSTileRevealController(mContext, this,
Rohan Shah3090e792018-04-12 00:01:00 -0400119 (PagedTileLayout) mTileLayout);
Jason Monk32508852017-01-18 09:17:13 -0500120
Jason Monke5b770e2017-03-03 21:49:29 -0500121 addDivider();
122
phweiss4f70f102017-04-12 19:32:55 +0200123 mFooter = new QSSecurityFooter(this, context);
124 addView(mFooter.getView());
125
John Spurlockaf8d6c42014-05-07 17:49:08 -0400126 updateResources();
Jorim Jaggi3f48f462014-07-08 16:53:29 +0200127
128 mBrightnessController = new BrightnessController(getContext(),
Jason Monke5b770e2017-03-03 21:49:29 -0500129 findViewById(R.id.brightness_icon),
130 findViewById(R.id.brightness_slider));
131 }
132
133 protected void addDivider() {
134 mDivider = LayoutInflater.from(mContext).inflate(R.layout.qs_divider, this, false);
Jason Monk824ffff2017-04-11 15:49:06 -0400135 mDivider.setBackgroundColor(Utils.applyAlpha(mDivider.getAlpha(),
136 getColorForState(mContext, Tile.STATE_ACTIVE)));
Jason Monke5b770e2017-03-03 21:49:29 -0500137 addView(mDivider);
138 }
139
140 public View getDivider() {
141 return mDivider;
Jason Monk32508852017-01-18 09:17:13 -0500142 }
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200143
Amin Shaikh15781d62018-02-16 16:00:13 -0500144 public View getPageIndicator() {
Rohan Shah3090e792018-04-12 00:01:00 -0400145 return mPanelPageIndicator;
Amin Shaikh15781d62018-02-16 16:00:13 -0500146 }
147
Amin Shaikha07a17b2018-02-23 16:02:52 -0500148 public QSTileRevealController getQsTileRevealController() {
149 return mQsTileRevealController;
150 }
151
Jason Monk377e7ad2016-02-16 14:03:21 -0500152 public boolean isShowingCustomize() {
153 return mCustomizePanel != null && mCustomizePanel.isCustomizing();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400154 }
155
Jason Monkcaf37622015-08-18 12:33:50 -0400156 @Override
157 protected void onAttachedToWindow() {
158 super.onAttachedToWindow();
Rohan Shahdb2cfa32018-02-20 11:27:22 -0800159 final TunerService tunerService = Dependency.get(TunerService.class);
160 tunerService.addTunable(this, QS_SHOW_BRIGHTNESS);
Rohan Shahdb2cfa32018-02-20 11:27:22 -0800161
Jason Monkf160edca2016-03-30 13:48:56 -0400162 if (mHost != null) {
163 setTiles(mHost.getTiles());
164 }
Adrian Roosb01793f2017-08-09 14:34:55 +0200165 if (mBrightnessMirrorController != null) {
166 mBrightnessMirrorController.addCallback(this);
167 }
Jason Monkcaf37622015-08-18 12:33:50 -0400168 }
169
170 @Override
171 protected void onDetachedFromWindow() {
Jason Monkde850bb2017-02-01 19:26:30 -0500172 Dependency.get(TunerService.class).removeTunable(this);
173 if (mHost != null) {
174 mHost.removeCallback(this);
175 }
Jason Monkf160edca2016-03-30 13:48:56 -0400176 for (TileRecord record : mRecords) {
177 record.tile.removeCallbacks();
178 }
Adrian Roosb01793f2017-08-09 14:34:55 +0200179 if (mBrightnessMirrorController != null) {
180 mBrightnessMirrorController.removeCallback(this);
181 }
Jason Monkcaf37622015-08-18 12:33:50 -0400182 super.onDetachedFromWindow();
183 }
184
185 @Override
Jason Monk46dbfb42016-02-25 14:59:20 -0500186 public void onTilesChanged() {
187 setTiles(mHost.getTiles());
188 }
189
190 @Override
Jason Monkcaf37622015-08-18 12:33:50 -0400191 public void onTuningChanged(String key, String newValue) {
192 if (QS_SHOW_BRIGHTNESS.equals(key)) {
Rohan Shahdb2cfa32018-02-20 11:27:22 -0800193 updateViewVisibilityForTuningValue(mBrightnessView, newValue);
Jason Monkcaf37622015-08-18 12:33:50 -0400194 }
195 }
196
Rohan Shahdb2cfa32018-02-20 11:27:22 -0800197 private void updateViewVisibilityForTuningValue(View view, @Nullable String newValue) {
198 view.setVisibility(newValue == null || Integer.parseInt(newValue) != 0 ? VISIBLE : GONE);
199 }
200
Jason Monka9927322015-12-13 16:22:37 -0500201 public void openDetails(String subPanel) {
Jason Monk702e2eb2017-03-03 16:53:44 -0500202 QSTile tile = getTile(subPanel);
Fabian Kozynskie3137e32018-09-28 11:20:04 -0400203 // If there's no tile with that name (as defined in QSFactoryImpl or other QSFactory),
204 // QSFactory will not be able to create a tile and getTile will return null
205 if (tile != null) {
206 showDetailAdapter(true, tile.getDetailAdapter(), new int[]{getWidth() / 2, 0});
207 }
Jason Monka9927322015-12-13 16:22:37 -0500208 }
209
Jason Monk702e2eb2017-03-03 16:53:44 -0500210 private QSTile getTile(String subPanel) {
Jason Monka9927322015-12-13 16:22:37 -0500211 for (int i = 0; i < mRecords.size(); i++) {
212 if (subPanel.equals(mRecords.get(i).tile.getTileSpec())) {
213 return mRecords.get(i).tile;
214 }
215 }
216 return mHost.createTile(subPanel);
217 }
218
Adrian Roos5fd872e2014-08-12 17:28:58 +0200219 public void setBrightnessMirror(BrightnessMirrorController c) {
Adrian Roosb01793f2017-08-09 14:34:55 +0200220 if (mBrightnessMirrorController != null) {
221 mBrightnessMirrorController.removeCallback(this);
222 }
Adrian Roos429c9622016-06-15 13:02:17 -0700223 mBrightnessMirrorController = c;
Adrian Roosb01793f2017-08-09 14:34:55 +0200224 if (mBrightnessMirrorController != null) {
225 mBrightnessMirrorController.addCallback(this);
226 }
227 updateBrightnessMirror();
228 }
229
230 @Override
231 public void onBrightnessMirrorReinflated(View brightnessMirror) {
232 updateBrightnessMirror();
Adrian Roos5fd872e2014-08-12 17:28:58 +0200233 }
234
Jason Monkb46059a2016-06-30 14:22:42 -0400235 View getBrightnessView() {
236 return mBrightnessView;
237 }
238
Jason Monke5b770e2017-03-03 21:49:29 -0500239 public void setCallback(QSDetail.Callback callback) {
John Spurlock5729d092014-05-29 17:42:51 -0400240 mCallback = callback;
241 }
242
Jason Monk8b9d67f2016-03-02 08:59:08 -0500243 public void setHost(QSTileHost host, QSCustomizer customizer) {
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200244 mHost = host;
Jason Monk46dbfb42016-02-25 14:59:20 -0500245 mHost.addCallback(this);
246 setTiles(mHost.getTiles());
Jason Monk9c7844c2017-01-18 15:21:53 -0500247 mFooter.setHostEnvironment(host);
Jason Monk8b9d67f2016-03-02 08:59:08 -0500248 mCustomizePanel = customizer;
249 if (mCustomizePanel != null) {
250 mCustomizePanel.setHost(mHost);
251 }
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200252 }
253
Rohan Shah3090e792018-04-12 00:01:00 -0400254 /**
255 * Links the footer's page indicator, which is used in landscape orientation to save space.
256 *
257 * @param pageIndicator indicator to use for page scrolling
258 */
259 public void setFooterPageIndicator(PageIndicator pageIndicator) {
260 if (mTileLayout instanceof PagedTileLayout) {
261 mFooterPageIndicator = pageIndicator;
262 updatePageIndicator();
263 }
264 }
265
266 private void updatePageIndicator() {
267 if (mTileLayout instanceof PagedTileLayout) {
268 // If we're in landscape, and we have the footer page indicator (which we should if the
269 // footer has been initialized & linked), then we'll show the footer page indicator to
270 // save space in the main QS tile area. Otherwise, we'll use the default one under the
271 // tiles/above the footer.
272 boolean shouldUseFooterPageIndicator =
273 getResources().getConfiguration().orientation == ORIENTATION_LANDSCAPE
274 && mFooterPageIndicator != null;
275
276 mPanelPageIndicator.setVisibility(View.GONE);
277 if (mFooterPageIndicator != null) {
278 mFooterPageIndicator.setVisibility(View.GONE);
279 }
280
281 ((PagedTileLayout) mTileLayout).setPageIndicator(
282 shouldUseFooterPageIndicator ? mFooterPageIndicator : mPanelPageIndicator);
283 }
284 }
285
Adrian Roos00a0b1f2014-07-16 16:44:49 +0200286 public QSTileHost getHost() {
287 return mHost;
288 }
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200289
John Spurlockaf8d6c42014-05-07 17:49:08 -0400290 public void updateResources() {
John Spurlock4bf31982014-05-21 13:04:22 -0400291 final Resources res = mContext.getResources();
Rohan Shahd3cf7562018-02-23 11:12:28 -0800292 setPadding(0, res.getDimensionPixelSize(R.dimen.qs_panel_padding_top), 0, res.getDimensionPixelSize(R.dimen.qs_panel_padding_bottom));
Rohan Shah3090e792018-04-12 00:01:00 -0400293
294 updatePageIndicator();
295
John Spurlock1a462c12014-07-14 10:52:01 -0400296 if (mListening) {
297 refreshAllTiles();
298 }
Jason Monkcaf37622015-08-18 12:33:50 -0400299 if (mTileLayout != null) {
300 mTileLayout.updateResources();
301 }
John Spurlockaf8d6c42014-05-07 17:49:08 -0400302 }
303
Jorim Jaggie17c4b42014-08-26 17:27:31 +0200304 @Override
305 protected void onConfigurationChanged(Configuration newConfig) {
306 super.onConfigurationChanged(newConfig);
Jorim Jaggie17c4b42014-08-26 17:27:31 +0200307 mFooter.onConfigurationChanged();
Adrian Roos429c9622016-06-15 13:02:17 -0700308
Adrian Roosb01793f2017-08-09 14:34:55 +0200309 updateBrightnessMirror();
310 }
311
312 public void updateBrightnessMirror() {
Adrian Roos429c9622016-06-15 13:02:17 -0700313 if (mBrightnessMirrorController != null) {
Adrian Roosb01793f2017-08-09 14:34:55 +0200314 ToggleSliderView brightnessSlider = findViewById(R.id.brightness_slider);
315 ToggleSliderView mirrorSlider = mBrightnessMirrorController.getMirror()
316 .findViewById(R.id.brightness_slider);
317 brightnessSlider.setMirror(mirrorSlider);
318 brightnessSlider.setMirrorController(mBrightnessMirrorController);
Adrian Roos429c9622016-06-15 13:02:17 -0700319 }
Jorim Jaggie17c4b42014-08-26 17:27:31 +0200320 }
321
Jason Monkbd6dbb02015-09-03 15:46:25 -0400322 public void onCollapse() {
Yoshinori Hirano1dd7d072016-09-05 16:11:59 +0900323 if (mCustomizePanel != null && mCustomizePanel.isShown()) {
Fabian Kozynski0db39af2018-08-31 15:56:45 -0400324 mCustomizePanel.hide();
Jason Monkbd6dbb02015-09-03 15:46:25 -0400325 }
326 }
327
John Spurlockaf8d6c42014-05-07 17:49:08 -0400328 public void setExpanded(boolean expanded) {
John Spurlock5729d092014-05-29 17:42:51 -0400329 if (mExpanded == expanded) return;
330 mExpanded = expanded;
Amin Shaikh15781d62018-02-16 16:00:13 -0500331 if (!mExpanded && mTileLayout instanceof PagedTileLayout) {
332 ((PagedTileLayout) mTileLayout).setCurrentItem(0, false);
Jason Monk162011e2016-02-19 08:11:55 -0500333 }
Jason Monk8c09ac72017-03-16 11:53:40 -0400334 mMetricsLogger.visibility(MetricsEvent.QS_PANEL, mExpanded);
John Spurlock5729d092014-05-29 17:42:51 -0400335 if (!mExpanded) {
John Spurlockf7ae4422014-08-01 12:45:18 -0400336 closeDetail();
Chris Wren457a21c2015-05-06 17:50:34 -0400337 } else {
338 logTiles();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400339 }
Jorim Jaggie65e3102014-07-01 22:00:50 +0200340 }
341
Amin Shaikh5da602f2018-02-02 15:00:25 -0500342 public void setPageListener(final PagedTileLayout.PageListener pageListener) {
343 if (mTileLayout instanceof PagedTileLayout) {
344 ((PagedTileLayout) mTileLayout).setPageListener(pageListener);
Amin Shaikh5da602f2018-02-02 15:00:25 -0500345 }
346 }
347
Muyuan Li0e9f5382016-04-27 15:51:15 -0700348 public boolean isExpanded() {
349 return mExpanded;
350 }
351
Jorim Jaggie65e3102014-07-01 22:00:50 +0200352 public void setListening(boolean listening) {
353 if (mListening == listening) return;
354 mListening = listening;
Jason Monk1bec6af2016-05-31 15:40:58 -0400355 if (mTileLayout != null) {
356 mTileLayout.setListening(listening);
John Spurlock1a462c12014-07-14 10:52:01 -0400357 }
358 if (mListening) {
359 refreshAllTiles();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400360 }
Fabian Kozynskib9dc0c72018-09-20 13:00:17 -0400361 }
362
363 public void setListening(boolean listening, boolean expanded) {
364 setListening(listening && expanded);
365 getFooter().setListening(listening);
366 // Set the listening as soon as the QS fragment starts listening regardless of the expansion,
367 // so it will update the current brightness before the slider is visible.
368 setBrightnessListening(listening);
369 }
370
371 public void setBrightnessListening(boolean listening) {
372 if (listening) {
373 mBrightnessController.registerCallbacks();
374 } else {
375 mBrightnessController.unregisterCallbacks();
Jorim Jaggi3f48f462014-07-08 16:53:29 +0200376 }
John Spurlockaf8d6c42014-05-07 17:49:08 -0400377 }
378
Jorim Jaggi1ecd7cd2014-11-03 16:18:03 +0100379 public void refreshAllTiles() {
yuemingweb2bf7d182018-01-23 16:05:08 +0000380 mBrightnessController.checkRestrictionAndSetEnabled();
John Spurlock1a462c12014-07-14 10:52:01 -0400381 for (TileRecord r : mRecords) {
382 r.tile.refreshState();
383 }
Jason Monk3d5f5512014-07-25 11:17:28 -0400384 mFooter.refreshState();
John Spurlock1a462c12014-07-14 10:52:01 -0400385 }
386
Adrian Roos970be532014-11-21 15:50:16 +0100387 public void showDetailAdapter(boolean show, DetailAdapter adapter, int[] locationInWindow) {
388 int xInWindow = locationInWindow[0];
389 int yInWindow = locationInWindow[1];
Jason Monk377e7ad2016-02-16 14:03:21 -0500390 ((View) getParent()).getLocationInWindow(locationInWindow);
Adrian Roos970be532014-11-21 15:50:16 +0100391
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200392 Record r = new Record();
393 r.detailAdapter = adapter;
Adrian Roos970be532014-11-21 15:50:16 +0100394 r.x = xInWindow - locationInWindow[0];
395 r.y = yInWindow - locationInWindow[1];
396
397 locationInWindow[0] = xInWindow;
398 locationInWindow[1] = yInWindow;
399
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200400 showDetail(show, r);
401 }
402
Jason Monkdc35dcb2015-12-04 16:36:15 -0500403 protected void showDetail(boolean show, Record r) {
John Spurlockaf8d6c42014-05-07 17:49:08 -0400404 mHandler.obtainMessage(H.SHOW_DETAIL, show ? 1 : 0, 0, r).sendToTarget();
405 }
406
Jason Monk702e2eb2017-03-03 16:53:44 -0500407 public void setTiles(Collection<QSTile> tiles) {
Julia Reynolds20aef8a2016-05-04 16:44:08 -0400408 setTiles(tiles, false);
409 }
410
Jason Monk702e2eb2017-03-03 16:53:44 -0500411 public void setTiles(Collection<QSTile> tiles, boolean collapsedView) {
Amin Shaikha07a17b2018-02-23 16:02:52 -0500412 if (!collapsedView) {
413 mQsTileRevealController.updateRevealedTiles(tiles);
414 }
John Spurlockbceed062014-08-10 18:04:16 -0400415 for (TileRecord record : mRecords) {
Jason Monkcaf37622015-08-18 12:33:50 -0400416 mTileLayout.removeTile(record);
Xiaohui Chen08e266c2016-04-18 12:53:28 -0700417 record.tile.removeCallback(record.callback);
John Spurlockbceed062014-08-10 18:04:16 -0400418 }
419 mRecords.clear();
Jason Monk702e2eb2017-03-03 16:53:44 -0500420 for (QSTile tile : tiles) {
Julia Reynolds20aef8a2016-05-04 16:44:08 -0400421 addTile(tile, collapsedView);
John Spurlockbceed062014-08-10 18:04:16 -0400422 }
John Spurlockbceed062014-08-10 18:04:16 -0400423 }
424
Jason Monkec87a872016-03-01 15:00:16 -0500425 protected void drawTile(TileRecord r, QSTile.State state) {
John Spurlock20c89052015-05-11 13:11:24 -0400426 r.tileView.onStateChanged(state);
427 }
428
Jason Monk702e2eb2017-03-03 16:53:44 -0500429 protected QSTileView createTileView(QSTile tile, boolean collapsedView) {
430 return mHost.createTileView(tile, collapsedView);
Jason Monkdc35dcb2015-12-04 16:36:15 -0500431 }
432
Xiaohui Chen66448932016-04-18 12:53:28 -0700433 protected boolean shouldShowDetail() {
434 return mExpanded;
435 }
436
Jason Monk702e2eb2017-03-03 16:53:44 -0500437 protected TileRecord addTile(final QSTile tile, boolean collapsedView) {
John Spurlockaf8d6c42014-05-07 17:49:08 -0400438 final TileRecord r = new TileRecord();
439 r.tile = tile;
Julia Reynolds20aef8a2016-05-04 16:44:08 -0400440 r.tileView = createTileView(tile, collapsedView);
John Spurlockbceed062014-08-10 18:04:16 -0400441 final QSTile.Callback callback = new QSTile.Callback() {
John Spurlockaf8d6c42014-05-07 17:49:08 -0400442 @Override
443 public void onStateChanged(QSTile.State state) {
Jason Monk377e7ad2016-02-16 14:03:21 -0500444 drawTile(r, state);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400445 }
Jason Monkca894a02016-01-12 15:30:22 -0500446
John Spurlockaf8d6c42014-05-07 17:49:08 -0400447 @Override
448 public void onShowDetail(boolean show) {
Xiaohui Chen66448932016-04-18 12:53:28 -0700449 // Both the collapsed and full QS panels get this callback, this check determines
450 // which one should handle showing the detail.
451 if (shouldShowDetail()) {
452 QSPanel.this.showDetail(show, r);
453 }
John Spurlockaf8d6c42014-05-07 17:49:08 -0400454 }
Jason Monkca894a02016-01-12 15:30:22 -0500455
John Spurlock7f8f22a2014-07-02 18:54:17 -0400456 @Override
457 public void onToggleStateChanged(boolean state) {
458 if (mDetailRecord == r) {
459 fireToggleStateChanged(state);
460 }
461 }
Jason Monkca894a02016-01-12 15:30:22 -0500462
John Spurlock486b78e2014-07-07 08:37:56 -0400463 @Override
464 public void onScanStateChanged(boolean state) {
John Spurlock465cefa2014-08-16 10:39:33 -0400465 r.scanState = state;
John Spurlock486b78e2014-07-07 08:37:56 -0400466 if (mDetailRecord == r) {
John Spurlock465cefa2014-08-16 10:39:33 -0400467 fireScanStateChanged(r.scanState);
John Spurlock486b78e2014-07-07 08:37:56 -0400468 }
469 }
Selim Cinek4fda7b22014-08-18 22:07:25 +0200470
471 @Override
472 public void onAnnouncementRequested(CharSequence announcement) {
dooyoung.hwang1b006622016-12-22 20:04:20 +0900473 if (announcement != null) {
474 mHandler.obtainMessage(H.ANNOUNCE_FOR_ACCESSIBILITY, announcement)
475 .sendToTarget();
476 }
Selim Cinek4fda7b22014-08-18 22:07:25 +0200477 }
John Spurlockbceed062014-08-10 18:04:16 -0400478 };
Jason Monkca894a02016-01-12 15:30:22 -0500479 r.tile.addCallback(callback);
Xiaohui Chen08e266c2016-04-18 12:53:28 -0700480 r.callback = callback;
Jason Monk702e2eb2017-03-03 16:53:44 -0500481 r.tileView.init(r.tile);
John Spurlockccb6b9a2014-05-17 15:54:40 -0400482 r.tile.refreshState();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400483 mRecords.add(r);
484
Jason Monkcaf37622015-08-18 12:33:50 -0400485 if (mTileLayout != null) {
486 mTileLayout.addTile(r);
487 }
Muyuan Lib40004b2016-05-11 14:47:29 -0700488
489 return r;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400490 }
491
Jason Monk21428432016-02-10 16:42:38 -0500492
Jason Monk4bb7b1a2016-05-27 15:19:15 -0400493 public void showEdit(final View v) {
Jason Monk21428432016-02-10 16:42:38 -0500494 v.post(new Runnable() {
495 @Override
496 public void run() {
497 if (mCustomizePanel != null) {
498 if (!mCustomizePanel.isCustomizing()) {
Fabian Kozynski0db39af2018-08-31 15:56:45 -0400499 int[] loc = v.getLocationOnScreen();
Jason Monk4bb7b1a2016-05-27 15:19:15 -0400500 int x = loc[0] + v.getWidth() / 2;
501 int y = loc[1] + v.getHeight() / 2;
Jason Monk21428432016-02-10 16:42:38 -0500502 mCustomizePanel.show(x, y);
503 }
504 }
505
506 }
507 });
508 }
509
John Spurlockf7ae4422014-08-01 12:45:18 -0400510 public void closeDetail() {
Yoshinori Hirano1dd7d072016-09-05 16:11:59 +0900511 if (mCustomizePanel != null && mCustomizePanel.isShown()) {
Jason Monkbd6dbb02015-09-03 15:46:25 -0400512 // Treat this as a detail panel for now, to make things easy.
Fabian Kozynski0db39af2018-08-31 15:56:45 -0400513 mCustomizePanel.hide();
Jason Monkbd6dbb02015-09-03 15:46:25 -0400514 return;
515 }
John Spurlockf7ae4422014-08-01 12:45:18 -0400516 showDetail(false, mDetailRecord);
517 }
518
Jorim Jaggi8bc983e2014-12-10 17:45:50 +0100519 public int getGridHeight() {
Jason Monk162011e2016-02-19 08:11:55 -0500520 return getMeasuredHeight();
Jorim Jaggi8bc983e2014-12-10 17:45:50 +0100521 }
522
Jason Monkdc35dcb2015-12-04 16:36:15 -0500523 protected void handleShowDetail(Record r, boolean show) {
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200524 if (r instanceof TileRecord) {
525 handleShowDetailTile((TileRecord) r, show);
526 } else {
Adrian Roos970be532014-11-21 15:50:16 +0100527 int x = 0;
528 int y = 0;
529 if (r != null) {
530 x = r.x;
531 y = r.y;
532 }
533 handleShowDetailImpl(r, show, x, y);
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200534 }
535 }
536
537 private void handleShowDetailTile(TileRecord r, boolean show) {
Jason Monkefe3d3f2015-06-10 16:48:03 -0400538 if ((mDetailRecord != null) == show && mDetailRecord == r) return;
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200539
John Spurlockaf8d6c42014-05-07 17:49:08 -0400540 if (show) {
John Spurlock7f8f22a2014-07-02 18:54:17 -0400541 r.detailAdapter = r.tile.getDetailAdapter();
542 if (r.detailAdapter == null) return;
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200543 }
Jason Monk0d6a1c42015-04-20 16:38:51 -0400544 r.tile.setDetailListening(show);
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200545 int x = r.tileView.getLeft() + r.tileView.getWidth() / 2;
Jason Monk702e2eb2017-03-03 16:53:44 -0500546 int y = r.tileView.getDetailY() + mTileLayout.getOffsetTop(r) + getTop();
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200547 handleShowDetailImpl(r, show, x, y);
548 }
549
550 private void handleShowDetailImpl(Record r, boolean show, int x, int y) {
Jason Monk377e7ad2016-02-16 14:03:21 -0500551 setDetailRecord(show ? r : null);
552 fireShowingDetail(show ? r.detailAdapter : null, x, y);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400553 }
554
Muyuan Li4074b462016-05-06 13:40:42 -0700555 protected void setDetailRecord(Record r) {
Jason Monk377e7ad2016-02-16 14:03:21 -0500556 if (r == mDetailRecord) return;
557 mDetailRecord = r;
558 final boolean scanState = mDetailRecord instanceof TileRecord
559 && ((TileRecord) mDetailRecord).scanState;
560 fireScanStateChanged(scanState);
561 }
562
563 void setGridContentVisibility(boolean visible) {
Selim Cineke32010a2014-08-20 23:50:41 +0200564 int newVis = visible ? VISIBLE : INVISIBLE;
Jason Monk162011e2016-02-19 08:11:55 -0500565 setVisibility(newVis);
Chris Wren457a21c2015-05-06 17:50:34 -0400566 if (mGridContentVisible != visible) {
Jason Monk8c09ac72017-03-16 11:53:40 -0400567 mMetricsLogger.visibility(MetricsEvent.QS_PANEL, newVis);
Chris Wren457a21c2015-05-06 17:50:34 -0400568 }
Selim Cineke32010a2014-08-20 23:50:41 +0200569 mGridContentVisible = visible;
570 }
571
Chris Wren457a21c2015-05-06 17:50:34 -0400572 private void logTiles() {
573 for (int i = 0; i < mRecords.size(); i++) {
Jason Monkcb4b31d2017-05-03 10:37:34 -0400574 QSTile tile = mRecords.get(i).tile;
575 mMetricsLogger.write(tile.populate(new LogMaker(tile.getMetricsCategory())
576 .setType(MetricsEvent.TYPE_OPEN)));
Chris Wren457a21c2015-05-06 17:50:34 -0400577 }
578 }
579
Jason Monk377e7ad2016-02-16 14:03:21 -0500580 private void fireShowingDetail(DetailAdapter detail, int x, int y) {
John Spurlock5729d092014-05-29 17:42:51 -0400581 if (mCallback != null) {
Jason Monk377e7ad2016-02-16 14:03:21 -0500582 mCallback.onShowingDetail(detail, x, y);
John Spurlock7f8f22a2014-07-02 18:54:17 -0400583 }
584 }
585
586 private void fireToggleStateChanged(boolean state) {
587 if (mCallback != null) {
588 mCallback.onToggleStateChanged(state);
John Spurlock5729d092014-05-29 17:42:51 -0400589 }
590 }
591
John Spurlock486b78e2014-07-07 08:37:56 -0400592 private void fireScanStateChanged(boolean state) {
593 if (mCallback != null) {
594 mCallback.onScanStateChanged(state);
595 }
596 }
597
Jason Monk7e53f202016-01-28 10:40:20 -0500598 public void clickTile(ComponentName tile) {
599 final String spec = CustomTile.toSpec(tile);
600 final int N = mRecords.size();
601 for (int i = 0; i < N; i++) {
602 if (mRecords.get(i).tile.getTileSpec().equals(spec)) {
603 mRecords.get(i).tile.click();
604 break;
605 }
606 }
607 }
608
Jason Monk162011e2016-02-19 08:11:55 -0500609 QSTileLayout getTileLayout() {
610 return mTileLayout;
611 }
612
Jason Monk702e2eb2017-03-03 16:53:44 -0500613 QSTileView getTileView(QSTile tile) {
Jason Monk162011e2016-02-19 08:11:55 -0500614 for (TileRecord r : mRecords) {
615 if (r.tile == tile) {
616 return r.tileView;
617 }
618 }
619 return null;
620 }
621
Jason Monke5b770e2017-03-03 21:49:29 -0500622 public QSSecurityFooter getFooter() {
Jason Monkdf36aed2016-07-25 11:21:56 -0400623 return mFooter;
624 }
625
phweissa0cb2512016-12-14 21:37:48 +0100626 public void showDeviceMonitoringDialog() {
627 mFooter.showDeviceMonitoringDialog();
628 }
629
Amin Shaikhbc1a4e82018-04-16 12:14:35 -0400630 public void setMargins(int sideMargins) {
631 for (int i = 0; i < getChildCount(); i++) {
632 View view = getChildAt(i);
633 if (view != mTileLayout) {
634 LayoutParams lp = (LayoutParams) view.getLayoutParams();
635 lp.leftMargin = sideMargins;
636 lp.rightMargin = sideMargins;
637 }
638 }
639 }
640
John Spurlockaf8d6c42014-05-07 17:49:08 -0400641 private class H extends Handler {
642 private static final int SHOW_DETAIL = 1;
643 private static final int SET_TILE_VISIBILITY = 2;
dooyoung.hwang1b006622016-12-22 20:04:20 +0900644 private static final int ANNOUNCE_FOR_ACCESSIBILITY = 3;
Jason Monkcb4b31d2017-05-03 10:37:34 -0400645
John Spurlockaf8d6c42014-05-07 17:49:08 -0400646 @Override
647 public void handleMessage(Message msg) {
648 if (msg.what == SHOW_DETAIL) {
Jason Monkcb4b31d2017-05-03 10:37:34 -0400649 handleShowDetail((Record) msg.obj, msg.arg1 != 0);
dooyoung.hwang1b006622016-12-22 20:04:20 +0900650 } else if (msg.what == ANNOUNCE_FOR_ACCESSIBILITY) {
Jason Monkcb4b31d2017-05-03 10:37:34 -0400651 announceForAccessibility((CharSequence) msg.obj);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400652 }
653 }
654 }
655
Jason Monkdc35dcb2015-12-04 16:36:15 -0500656 protected static class Record {
John Spurlock7f8f22a2014-07-02 18:54:17 -0400657 DetailAdapter detailAdapter;
Adrian Roos970be532014-11-21 15:50:16 +0100658 int x;
659 int y;
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200660 }
661
Jason Monkbd6dbb02015-09-03 15:46:25 -0400662 public static final class TileRecord extends Record {
Jason Monk702e2eb2017-03-03 16:53:44 -0500663 public QSTile tile;
664 public com.android.systemui.plugins.qs.QSTileView tileView;
Jason Monk11a77442015-05-12 19:29:02 -0400665 public boolean scanState;
Xiaohui Chen08e266c2016-04-18 12:53:28 -0700666 public QSTile.Callback callback;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400667 }
668
Jason Monkcaf37622015-08-18 12:33:50 -0400669 public interface QSTileLayout {
Fabian Kozynski407ddb22018-10-03 15:04:56 -0400670
671 default void saveInstanceState(Bundle outState) {}
672
673 default void restoreInstanceState(Bundle savedInstanceState) {}
674
Jason Monkcaf37622015-08-18 12:33:50 -0400675 void addTile(TileRecord tile);
Jason Monkcb4b31d2017-05-03 10:37:34 -0400676
Jason Monkcaf37622015-08-18 12:33:50 -0400677 void removeTile(TileRecord tile);
Jason Monkcb4b31d2017-05-03 10:37:34 -0400678
Jason Monkcaf37622015-08-18 12:33:50 -0400679 int getOffsetTop(TileRecord tile);
Jason Monkcb4b31d2017-05-03 10:37:34 -0400680
Jason Monk9d02a432016-01-20 16:33:46 -0500681 boolean updateResources();
Jason Monk1bec6af2016-05-31 15:40:58 -0400682
683 void setListening(boolean listening);
Amin Shaikh0f8ea5432018-03-27 11:09:27 -0400684
685 default void setExpansion(float expansion) {}
Fabian Kozynski802279f2018-09-07 13:44:54 -0400686
687 int getNumVisibleTiles();
Jason Monkcaf37622015-08-18 12:33:50 -0400688 }
John Spurlockaf8d6c42014-05-07 17:49:08 -0400689}