blob: f352849bda800611b1eefe5dffbd1f85ab54e825 [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
19import android.animation.Animator;
20import android.animation.Animator.AnimatorListener;
21import android.animation.AnimatorListenerAdapter;
22import android.content.Context;
John Spurlock7f8f22a2014-07-02 18:54:17 -040023import android.content.Intent;
Jorim Jaggie17c4b42014-08-26 17:27:31 +020024import android.content.res.Configuration;
John Spurlock4bf31982014-05-21 13:04:22 -040025import android.content.res.Resources;
John Spurlockaf8d6c42014-05-07 17:49:08 -040026import android.os.Handler;
27import android.os.Message;
28import android.util.AttributeSet;
John Spurlock7f8f22a2014-07-02 18:54:17 -040029import android.view.LayoutInflater;
John Spurlockaf8d6c42014-05-07 17:49:08 -040030import android.view.View;
31import android.view.ViewGroup;
Jason Monk6783bef2014-09-22 13:50:05 -040032import android.view.accessibility.AccessibilityEvent;
Jorim Jaggi3f48f462014-07-08 16:53:29 +020033import android.widget.ImageView;
Jorim Jaggie17c4b42014-08-26 17:27:31 +020034import android.widget.TextView;
John Spurlockaf8d6c42014-05-07 17:49:08 -040035
Chris Wren457a21c2015-05-06 17:50:34 -040036import com.android.internal.logging.MetricsLogger;
Jorim Jaggie17c4b42014-08-26 17:27:31 +020037import com.android.systemui.FontSizeUtils;
John Spurlockaf8d6c42014-05-07 17:49:08 -040038import com.android.systemui.R;
John Spurlock7f8f22a2014-07-02 18:54:17 -040039import com.android.systemui.qs.QSTile.DetailAdapter;
Jorim Jaggi3f48f462014-07-08 16:53:29 +020040import com.android.systemui.settings.BrightnessController;
41import com.android.systemui.settings.ToggleSlider;
Adrian Roos1ef80fe2014-07-14 22:53:54 +020042import com.android.systemui.statusbar.phone.QSTileHost;
Adrian Roos5fd872e2014-08-12 17:28:58 +020043import com.android.systemui.statusbar.policy.BrightnessMirrorController;
John Spurlockaf8d6c42014-05-07 17:49:08 -040044
45import java.util.ArrayList;
John Spurlockbceed062014-08-10 18:04:16 -040046import java.util.Collection;
John Spurlockaf8d6c42014-05-07 17:49:08 -040047
48/** View that represents the quick settings tile panel. **/
49public class QSPanel extends ViewGroup {
John Spurlock4bf31982014-05-21 13:04:22 -040050 private static final float TILE_ASPECT = 1.2f;
John Spurlockaf8d6c42014-05-07 17:49:08 -040051
52 private final Context mContext;
53 private final ArrayList<TileRecord> mRecords = new ArrayList<TileRecord>();
John Spurlock7f8f22a2014-07-02 18:54:17 -040054 private final View mDetail;
55 private final ViewGroup mDetailContent;
Jorim Jaggie17c4b42014-08-26 17:27:31 +020056 private final TextView mDetailSettingsButton;
57 private final TextView mDetailDoneButton;
Jorim Jaggi3f48f462014-07-08 16:53:29 +020058 private final View mBrightnessView;
John Spurlock8af525d2014-08-02 10:56:05 -040059 private final QSDetailClipper mClipper;
John Spurlockaf8d6c42014-05-07 17:49:08 -040060 private final H mHandler = new H();
61
62 private int mColumns;
63 private int mCellWidth;
64 private int mCellHeight;
65 private int mLargeCellWidth;
66 private int mLargeCellHeight;
John Spurlock92d9b192014-06-29 12:54:24 -040067 private int mPanelPaddingBottom;
John Spurlock39076ed2014-06-30 20:47:20 -040068 private int mDualTileUnderlap;
Adrian Rooscd542b82014-08-12 22:25:35 +020069 private int mBrightnessPaddingTop;
Jorim Jaggi8bc983e2014-12-10 17:45:50 +010070 private int mGridHeight;
John Spurlock5729d092014-05-29 17:42:51 -040071 private boolean mExpanded;
Jorim Jaggie65e3102014-07-01 22:00:50 +020072 private boolean mListening;
Jorim Jaggi8bc983e2014-12-10 17:45:50 +010073 private boolean mClosingDetail;
John Spurlockaf8d6c42014-05-07 17:49:08 -040074
Adrian Roos1ef80fe2014-07-14 22:53:54 +020075 private Record mDetailRecord;
John Spurlock5729d092014-05-29 17:42:51 -040076 private Callback mCallback;
Jorim Jaggi3f48f462014-07-08 16:53:29 +020077 private BrightnessController mBrightnessController;
Adrian Roos1ef80fe2014-07-14 22:53:54 +020078 private QSTileHost mHost;
John Spurlockaf8d6c42014-05-07 17:49:08 -040079
Jason Monk3d5f5512014-07-25 11:17:28 -040080 private QSFooter mFooter;
Selim Cineke32010a2014-08-20 23:50:41 +020081 private boolean mGridContentVisible = true;
Jason Monk3d5f5512014-07-25 11:17:28 -040082
John Spurlockaf8d6c42014-05-07 17:49:08 -040083 public QSPanel(Context context) {
84 this(context, null);
85 }
86
87 public QSPanel(Context context, AttributeSet attrs) {
88 super(context, attrs);
89 mContext = context;
90
John Spurlock7f8f22a2014-07-02 18:54:17 -040091 mDetail = LayoutInflater.from(context).inflate(R.layout.qs_detail, this, false);
92 mDetailContent = (ViewGroup) mDetail.findViewById(android.R.id.content);
Jorim Jaggie17c4b42014-08-26 17:27:31 +020093 mDetailSettingsButton = (TextView) mDetail.findViewById(android.R.id.button2);
94 mDetailDoneButton = (TextView) mDetail.findViewById(android.R.id.button1);
Jason Monke2f47712014-09-09 09:35:55 -040095 updateDetailText();
John Spurlockaf8d6c42014-05-07 17:49:08 -040096 mDetail.setVisibility(GONE);
97 mDetail.setClickable(true);
Jorim Jaggi3f48f462014-07-08 16:53:29 +020098 mBrightnessView = LayoutInflater.from(context).inflate(
99 R.layout.quick_settings_brightness_dialog, this, false);
Jason Monk3d5f5512014-07-25 11:17:28 -0400100 mFooter = new QSFooter(this, context);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400101 addView(mDetail);
Jorim Jaggi3f48f462014-07-08 16:53:29 +0200102 addView(mBrightnessView);
Jason Monk3d5f5512014-07-25 11:17:28 -0400103 addView(mFooter.getView());
John Spurlock8af525d2014-08-02 10:56:05 -0400104 mClipper = new QSDetailClipper(mDetail);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400105 updateResources();
Jorim Jaggi3f48f462014-07-08 16:53:29 +0200106
107 mBrightnessController = new BrightnessController(getContext(),
108 (ImageView) findViewById(R.id.brightness_icon),
109 (ToggleSlider) findViewById(R.id.brightness_slider));
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200110
111 mDetailDoneButton.setOnClickListener(new OnClickListener() {
112 @Override
113 public void onClick(View v) {
John Spurlockf7ae4422014-08-01 12:45:18 -0400114 closeDetail();
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200115 }
116 });
John Spurlockaf8d6c42014-05-07 17:49:08 -0400117 }
118
Jason Monke2f47712014-09-09 09:35:55 -0400119 private void updateDetailText() {
120 mDetailDoneButton.setText(R.string.quick_settings_done);
121 mDetailSettingsButton.setText(R.string.quick_settings_more_settings);
122 }
123
Adrian Roos5fd872e2014-08-12 17:28:58 +0200124 public void setBrightnessMirror(BrightnessMirrorController c) {
125 super.onFinishInflate();
126 ToggleSlider brightnessSlider = (ToggleSlider) findViewById(R.id.brightness_slider);
127 ToggleSlider mirror = (ToggleSlider) c.getMirror().findViewById(R.id.brightness_slider);
128 brightnessSlider.setMirror(mirror);
129 brightnessSlider.setMirrorController(c);
130 }
131
John Spurlock5729d092014-05-29 17:42:51 -0400132 public void setCallback(Callback callback) {
133 mCallback = callback;
134 }
135
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200136 public void setHost(QSTileHost host) {
137 mHost = host;
Jason Monk3d5f5512014-07-25 11:17:28 -0400138 mFooter.setHost(host);
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200139 }
140
Adrian Roos00a0b1f2014-07-16 16:44:49 +0200141 public QSTileHost getHost() {
142 return mHost;
143 }
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200144
John Spurlockaf8d6c42014-05-07 17:49:08 -0400145 public void updateResources() {
John Spurlock4bf31982014-05-21 13:04:22 -0400146 final Resources res = mContext.getResources();
147 final int columns = Math.max(1, res.getInteger(R.integer.quick_settings_num_columns));
148 mCellHeight = res.getDimensionPixelSize(R.dimen.qs_tile_height);
149 mCellWidth = (int)(mCellHeight * TILE_ASPECT);
150 mLargeCellHeight = res.getDimensionPixelSize(R.dimen.qs_dual_tile_height);
151 mLargeCellWidth = (int)(mLargeCellHeight * TILE_ASPECT);
John Spurlock92d9b192014-06-29 12:54:24 -0400152 mPanelPaddingBottom = res.getDimensionPixelSize(R.dimen.qs_panel_padding_bottom);
John Spurlock39076ed2014-06-30 20:47:20 -0400153 mDualTileUnderlap = res.getDimensionPixelSize(R.dimen.qs_dual_tile_padding_vertical);
Adrian Rooscd542b82014-08-12 22:25:35 +0200154 mBrightnessPaddingTop = res.getDimensionPixelSize(R.dimen.qs_brightness_padding_top);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400155 if (mColumns != columns) {
156 mColumns = columns;
157 postInvalidate();
158 }
John Spurlock1a462c12014-07-14 10:52:01 -0400159 if (mListening) {
160 refreshAllTiles();
161 }
Jason Monke2f47712014-09-09 09:35:55 -0400162 updateDetailText();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400163 }
164
Jorim Jaggie17c4b42014-08-26 17:27:31 +0200165 @Override
166 protected void onConfigurationChanged(Configuration newConfig) {
167 super.onConfigurationChanged(newConfig);
168 FontSizeUtils.updateFontSize(mDetailDoneButton, R.dimen.qs_detail_button_text_size);
169 FontSizeUtils.updateFontSize(mDetailSettingsButton, R.dimen.qs_detail_button_text_size);
170
171 // We need to poke the detail views as well as they might not be attached to the view
172 // hierarchy but reused at a later point.
173 int count = mRecords.size();
174 for (int i = 0; i < count; i++) {
175 View detailView = mRecords.get(i).detailView;
176 if (detailView != null) {
177 detailView.dispatchConfigurationChanged(newConfig);
178 }
179 }
180 mFooter.onConfigurationChanged();
181 }
182
John Spurlockaf8d6c42014-05-07 17:49:08 -0400183 public void setExpanded(boolean expanded) {
John Spurlock5729d092014-05-29 17:42:51 -0400184 if (mExpanded == expanded) return;
185 mExpanded = expanded;
Chris Wren457a21c2015-05-06 17:50:34 -0400186 MetricsLogger.visibility(mContext, MetricsLogger.QS_PANEL, mExpanded);
John Spurlock5729d092014-05-29 17:42:51 -0400187 if (!mExpanded) {
John Spurlockf7ae4422014-08-01 12:45:18 -0400188 closeDetail();
Chris Wren457a21c2015-05-06 17:50:34 -0400189 } else {
190 logTiles();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400191 }
Jorim Jaggie65e3102014-07-01 22:00:50 +0200192 }
193
194 public void setListening(boolean listening) {
195 if (mListening == listening) return;
196 mListening = listening;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400197 for (TileRecord r : mRecords) {
Jorim Jaggie65e3102014-07-01 22:00:50 +0200198 r.tile.setListening(mListening);
John Spurlock1a462c12014-07-14 10:52:01 -0400199 }
Jason Monk3d5f5512014-07-25 11:17:28 -0400200 mFooter.setListening(mListening);
John Spurlock1a462c12014-07-14 10:52:01 -0400201 if (mListening) {
202 refreshAllTiles();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400203 }
Jorim Jaggi3f48f462014-07-08 16:53:29 +0200204 if (listening) {
205 mBrightnessController.registerCallbacks();
206 } else {
207 mBrightnessController.unregisterCallbacks();
208 }
John Spurlockaf8d6c42014-05-07 17:49:08 -0400209 }
210
Jorim Jaggi1ecd7cd2014-11-03 16:18:03 +0100211 public void refreshAllTiles() {
John Spurlock1a462c12014-07-14 10:52:01 -0400212 for (TileRecord r : mRecords) {
213 r.tile.refreshState();
214 }
Jason Monk3d5f5512014-07-25 11:17:28 -0400215 mFooter.refreshState();
John Spurlock1a462c12014-07-14 10:52:01 -0400216 }
217
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200218 public void showDetailAdapter(boolean show, DetailAdapter adapter) {
219 Record r = new Record();
220 r.detailAdapter = adapter;
221 showDetail(show, r);
222 }
223
224 private void showDetail(boolean show, Record r) {
John Spurlockaf8d6c42014-05-07 17:49:08 -0400225 mHandler.obtainMessage(H.SHOW_DETAIL, show ? 1 : 0, 0, r).sendToTarget();
226 }
227
Selim Cineke32010a2014-08-20 23:50:41 +0200228 private void setTileVisibility(View v, int visibility) {
229 mHandler.obtainMessage(H.SET_TILE_VISIBILITY, visibility, 0, v).sendToTarget();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400230 }
231
Selim Cineke32010a2014-08-20 23:50:41 +0200232 private void handleSetTileVisibility(View v, int visibility) {
233 if (visibility == v.getVisibility()) return;
234 v.setVisibility(visibility);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400235 }
236
John Spurlockbceed062014-08-10 18:04:16 -0400237 public void setTiles(Collection<QSTile<?>> tiles) {
238 for (TileRecord record : mRecords) {
239 removeView(record.tileView);
240 }
241 mRecords.clear();
242 for (QSTile<?> tile : tiles) {
243 addTile(tile);
244 }
245 if (isShowingDetail()) {
246 mDetail.bringToFront();
247 }
248 }
249
250 private void addTile(final QSTile<?> tile) {
John Spurlockaf8d6c42014-05-07 17:49:08 -0400251 final TileRecord r = new TileRecord();
252 r.tile = tile;
253 r.tileView = tile.createTileView(mContext);
254 r.tileView.setVisibility(View.GONE);
John Spurlockbceed062014-08-10 18:04:16 -0400255 final QSTile.Callback callback = new QSTile.Callback() {
John Spurlockaf8d6c42014-05-07 17:49:08 -0400256 @Override
257 public void onStateChanged(QSTile.State state) {
Selim Cineke32010a2014-08-20 23:50:41 +0200258 int visibility = state.visible ? VISIBLE : GONE;
Selim Cineke32010a2014-08-20 23:50:41 +0200259 setTileVisibility(r.tileView, visibility);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400260 r.tileView.onStateChanged(state);
261 }
262 @Override
263 public void onShowDetail(boolean show) {
264 QSPanel.this.showDetail(show, r);
265 }
John Spurlock7f8f22a2014-07-02 18:54:17 -0400266 @Override
267 public void onToggleStateChanged(boolean state) {
268 if (mDetailRecord == r) {
269 fireToggleStateChanged(state);
270 }
271 }
John Spurlock486b78e2014-07-07 08:37:56 -0400272 @Override
273 public void onScanStateChanged(boolean state) {
John Spurlock465cefa2014-08-16 10:39:33 -0400274 r.scanState = state;
John Spurlock486b78e2014-07-07 08:37:56 -0400275 if (mDetailRecord == r) {
John Spurlock465cefa2014-08-16 10:39:33 -0400276 fireScanStateChanged(r.scanState);
John Spurlock486b78e2014-07-07 08:37:56 -0400277 }
278 }
Selim Cinek4fda7b22014-08-18 22:07:25 +0200279
280 @Override
281 public void onAnnouncementRequested(CharSequence announcement) {
282 announceForAccessibility(announcement);
283 }
John Spurlockbceed062014-08-10 18:04:16 -0400284 };
285 r.tile.setCallback(callback);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400286 final View.OnClickListener click = new View.OnClickListener() {
287 @Override
288 public void onClick(View v) {
289 r.tile.click();
290 }
291 };
292 final View.OnClickListener clickSecondary = new View.OnClickListener() {
293 @Override
294 public void onClick(View v) {
295 r.tile.secondaryClick();
296 }
297 };
John Spurlockc247b8f2014-11-06 23:06:25 -0500298 final View.OnLongClickListener longClick = new View.OnLongClickListener() {
299 @Override
300 public boolean onLongClick(View v) {
301 r.tile.longClick();
302 return true;
303 }
304 };
305 r.tileView.init(click, clickSecondary, longClick);
John Spurlockbceed062014-08-10 18:04:16 -0400306 r.tile.setListening(mListening);
307 callback.onStateChanged(r.tile.getState());
John Spurlockccb6b9a2014-05-17 15:54:40 -0400308 r.tile.refreshState();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400309 mRecords.add(r);
310
311 addView(r.tileView);
312 }
313
John Spurlockf7ae4422014-08-01 12:45:18 -0400314 public boolean isShowingDetail() {
315 return mDetailRecord != null;
316 }
317
318 public void closeDetail() {
319 showDetail(false, mDetailRecord);
320 }
321
Jorim Jaggi8bc983e2014-12-10 17:45:50 +0100322 public boolean isClosingDetail() {
323 return mClosingDetail;
324 }
325
326 public int getGridHeight() {
327 return mGridHeight;
328 }
329
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200330 private void handleShowDetail(Record r, boolean show) {
331 if (r instanceof TileRecord) {
332 handleShowDetailTile((TileRecord) r, show);
333 } else {
334 handleShowDetailImpl(r, show, getWidth() /* x */, 0/* y */);
335 }
336 }
337
338 private void handleShowDetailTile(TileRecord r, boolean show) {
339 if ((mDetailRecord != null) == show) return;
340
John Spurlockaf8d6c42014-05-07 17:49:08 -0400341 if (show) {
John Spurlock7f8f22a2014-07-02 18:54:17 -0400342 r.detailAdapter = r.tile.getDetailAdapter();
343 if (r.detailAdapter == null) return;
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200344 }
Jason Monk0d6a1c42015-04-20 16:38:51 -0400345 r.tile.setDetailListening(show);
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200346 int x = r.tileView.getLeft() + r.tileView.getWidth() / 2;
347 int y = r.tileView.getTop() + r.tileView.getHeight() / 2;
348 handleShowDetailImpl(r, show, x, y);
349 }
350
351 private void handleShowDetailImpl(Record r, boolean show, int x, int y) {
352 if ((mDetailRecord != null) == show) return; // already in right state
353 DetailAdapter detailAdapter = null;
354 AnimatorListener listener = null;
355 if (show) {
356 detailAdapter = r.detailAdapter;
357 r.detailView = detailAdapter.createDetailView(mContext, r.detailView, mDetailContent);
John Spurlock7f8f22a2014-07-02 18:54:17 -0400358 if (r.detailView == null) throw new IllegalStateException("Must return detail view");
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200359
360 final Intent settingsIntent = detailAdapter.getSettingsIntent();
John Spurlock7f8f22a2014-07-02 18:54:17 -0400361 mDetailSettingsButton.setVisibility(settingsIntent != null ? VISIBLE : GONE);
362 mDetailSettingsButton.setOnClickListener(new OnClickListener() {
363 @Override
364 public void onClick(View v) {
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200365 mHost.startSettingsActivity(settingsIntent);
John Spurlock7f8f22a2014-07-02 18:54:17 -0400366 }
367 });
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200368
John Spurlock7f8f22a2014-07-02 18:54:17 -0400369 mDetailContent.removeAllViews();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400370 mDetail.bringToFront();
John Spurlock7f8f22a2014-07-02 18:54:17 -0400371 mDetailContent.addView(r.detailView);
Chris Wren457a21c2015-05-06 17:50:34 -0400372 MetricsLogger.visible(mContext, detailAdapter.getMetricsCategory());
John Spurlock465cefa2014-08-16 10:39:33 -0400373 setDetailRecord(r);
Selim Cineke32010a2014-08-20 23:50:41 +0200374 listener = mHideGridContentWhenDone;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400375 } else {
Chris Wren457a21c2015-05-06 17:50:34 -0400376 MetricsLogger.hidden(mContext, mDetailRecord.detailAdapter.getMetricsCategory());
Jorim Jaggi8bc983e2014-12-10 17:45:50 +0100377 mClosingDetail = true;
Selim Cineke32010a2014-08-20 23:50:41 +0200378 setGridContentVisibility(true);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400379 listener = mTeardownDetailWhenDone;
John Spurlock465cefa2014-08-16 10:39:33 -0400380 fireScanStateChanged(false);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400381 }
Jason Monk6783bef2014-09-22 13:50:05 -0400382 sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200383 fireShowingDetail(show ? detailAdapter : null);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400384 mClipper.animateCircularClip(x, y, show, listener);
385 }
386
Selim Cineke32010a2014-08-20 23:50:41 +0200387 private void setGridContentVisibility(boolean visible) {
388 int newVis = visible ? VISIBLE : INVISIBLE;
389 for (int i = 0; i < mRecords.size(); i++) {
390 TileRecord tileRecord = mRecords.get(i);
391 if (tileRecord.tileView.getVisibility() != GONE) {
392 tileRecord.tileView.setVisibility(newVis);
393 }
394 }
395 mBrightnessView.setVisibility(newVis);
Chris Wren457a21c2015-05-06 17:50:34 -0400396 if (mGridContentVisible != visible) {
397 MetricsLogger.visibility(mContext, MetricsLogger.QS_PANEL, newVis);
398 }
Selim Cineke32010a2014-08-20 23:50:41 +0200399 mGridContentVisible = visible;
400 }
401
Chris Wren457a21c2015-05-06 17:50:34 -0400402 private void logTiles() {
403 for (int i = 0; i < mRecords.size(); i++) {
404 TileRecord tileRecord = mRecords.get(i);
405 if (tileRecord.tile.getState().visible) {
406 MetricsLogger.visible(mContext, tileRecord.tile.getMetricsCategory());
407 }
408 }
409 }
410
John Spurlockaf8d6c42014-05-07 17:49:08 -0400411 @Override
412 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
413 final int width = MeasureSpec.getSize(widthMeasureSpec);
Jorim Jaggi3f48f462014-07-08 16:53:29 +0200414 mBrightnessView.measure(exactly(width), MeasureSpec.UNSPECIFIED);
Adrian Rooscd542b82014-08-12 22:25:35 +0200415 final int brightnessHeight = mBrightnessView.getMeasuredHeight() + mBrightnessPaddingTop;
Jason Monk3d5f5512014-07-25 11:17:28 -0400416 mFooter.getView().measure(exactly(width), MeasureSpec.UNSPECIFIED);
John Spurlockccb6b9a2014-05-17 15:54:40 -0400417 int r = -1;
418 int c = -1;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400419 int rows = 0;
John Spurlockccb6b9a2014-05-17 15:54:40 -0400420 boolean rowIsDual = false;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400421 for (TileRecord record : mRecords) {
422 if (record.tileView.getVisibility() == GONE) continue;
John Spurlockccb6b9a2014-05-17 15:54:40 -0400423 // wrap to next column if we've reached the max # of columns
424 // also don't allow dual + single tiles on the same row
425 if (r == -1 || c == (mColumns - 1) || rowIsDual != record.tile.supportsDualTargets()) {
426 r++;
427 c = 0;
428 rowIsDual = record.tile.supportsDualTargets();
429 } else {
430 c++;
431 }
John Spurlockaf8d6c42014-05-07 17:49:08 -0400432 record.row = r;
433 record.col = c;
434 rows = r + 1;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400435 }
436
437 for (TileRecord record : mRecords) {
Jason Monk8ba572a2015-01-30 13:02:27 -0500438 if (record.tileView.setDual(record.tile.supportsDualTargets())) {
439 record.tileView.handleStateChanged(record.tile.getState());
440 }
Selim Cineke5557a92014-08-15 19:59:23 +0200441 if (record.tileView.getVisibility() == GONE) continue;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400442 final int cw = record.row == 0 ? mLargeCellWidth : mCellWidth;
443 final int ch = record.row == 0 ? mLargeCellHeight : mCellHeight;
444 record.tileView.measure(exactly(cw), exactly(ch));
445 }
Adrian Rooscd542b82014-08-12 22:25:35 +0200446 int h = rows == 0 ? brightnessHeight : (getRowTop(rows) + mPanelPaddingBottom);
Jason Monk3d5f5512014-07-25 11:17:28 -0400447 if (mFooter.hasFooter()) {
Adrian Rooscd542b82014-08-12 22:25:35 +0200448 h += mFooter.getView().getMeasuredHeight();
Jason Monk3d5f5512014-07-25 11:17:28 -0400449 }
Adrian Roos19408922014-08-07 20:54:12 +0200450 mDetail.measure(exactly(width), MeasureSpec.UNSPECIFIED);
451 if (mDetail.getMeasuredHeight() < h) {
452 mDetail.measure(exactly(width), exactly(h));
453 }
Jorim Jaggi8bc983e2014-12-10 17:45:50 +0100454 mGridHeight = h;
Adrian Roos19408922014-08-07 20:54:12 +0200455 setMeasuredDimension(width, Math.max(h, mDetail.getMeasuredHeight()));
John Spurlockaf8d6c42014-05-07 17:49:08 -0400456 }
457
458 private static int exactly(int size) {
459 return MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY);
460 }
461
462 @Override
463 protected void onLayout(boolean changed, int l, int t, int r, int b) {
John Spurlock4bf31982014-05-21 13:04:22 -0400464 final int w = getWidth();
Adrian Rooscd542b82014-08-12 22:25:35 +0200465 mBrightnessView.layout(0, mBrightnessPaddingTop,
466 mBrightnessView.getMeasuredWidth(),
467 mBrightnessPaddingTop + mBrightnessView.getMeasuredHeight());
Selim Cinek06d3bca2014-08-26 17:29:20 +0200468 boolean isRtl = getLayoutDirection() == LAYOUT_DIRECTION_RTL;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400469 for (TileRecord record : mRecords) {
470 if (record.tileView.getVisibility() == GONE) continue;
471 final int cols = getColumnCount(record.row);
472 final int cw = record.row == 0 ? mLargeCellWidth : mCellWidth;
473 final int extra = (w - cw * cols) / (cols + 1);
Selim Cinek06d3bca2014-08-26 17:29:20 +0200474 int left = record.col * cw + (record.col + 1) * extra;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400475 final int top = getRowTop(record.row);
Selim Cinek06d3bca2014-08-26 17:29:20 +0200476 int right;
477 int tileWith = record.tileView.getMeasuredWidth();
478 if (isRtl) {
479 right = w - left;
480 left = right - tileWith;
481 } else {
482 right = left + tileWith;
483 }
484 record.tileView.layout(left, top, right, top + record.tileView.getMeasuredHeight());
John Spurlockaf8d6c42014-05-07 17:49:08 -0400485 }
John Spurlock3e04cc82014-05-30 12:34:03 -0400486 final int dh = Math.max(mDetail.getMeasuredHeight(), getMeasuredHeight());
487 mDetail.layout(0, 0, mDetail.getMeasuredWidth(), dh);
Jason Monk3d5f5512014-07-25 11:17:28 -0400488 if (mFooter.hasFooter()) {
489 View footer = mFooter.getView();
490 footer.layout(0, getMeasuredHeight() - footer.getMeasuredHeight(),
491 footer.getMeasuredWidth(), getMeasuredHeight());
492 }
John Spurlockaf8d6c42014-05-07 17:49:08 -0400493 }
494
495 private int getRowTop(int row) {
Adrian Rooscd542b82014-08-12 22:25:35 +0200496 if (row <= 0) return mBrightnessView.getMeasuredHeight() + mBrightnessPaddingTop;
497 return mBrightnessView.getMeasuredHeight() + mBrightnessPaddingTop
Jorim Jaggi3f48f462014-07-08 16:53:29 +0200498 + mLargeCellHeight - mDualTileUnderlap + (row - 1) * mCellHeight;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400499 }
500
501 private int getColumnCount(int row) {
502 int cols = 0;
503 for (TileRecord record : mRecords) {
504 if (record.tileView.getVisibility() == GONE) continue;
505 if (record.row == row) cols++;
506 }
507 return cols;
508 }
509
John Spurlock7f8f22a2014-07-02 18:54:17 -0400510 private void fireShowingDetail(QSTile.DetailAdapter detail) {
John Spurlock5729d092014-05-29 17:42:51 -0400511 if (mCallback != null) {
John Spurlock7f8f22a2014-07-02 18:54:17 -0400512 mCallback.onShowingDetail(detail);
513 }
514 }
515
516 private void fireToggleStateChanged(boolean state) {
517 if (mCallback != null) {
518 mCallback.onToggleStateChanged(state);
John Spurlock5729d092014-05-29 17:42:51 -0400519 }
520 }
521
John Spurlock486b78e2014-07-07 08:37:56 -0400522 private void fireScanStateChanged(boolean state) {
523 if (mCallback != null) {
524 mCallback.onScanStateChanged(state);
525 }
526 }
527
John Spurlock465cefa2014-08-16 10:39:33 -0400528 private void setDetailRecord(Record r) {
529 if (r == mDetailRecord) return;
530 mDetailRecord = r;
531 final boolean scanState = mDetailRecord instanceof TileRecord
532 && ((TileRecord) mDetailRecord).scanState;
533 fireScanStateChanged(scanState);
534 }
535
John Spurlockaf8d6c42014-05-07 17:49:08 -0400536 private class H extends Handler {
537 private static final int SHOW_DETAIL = 1;
538 private static final int SET_TILE_VISIBILITY = 2;
539 @Override
540 public void handleMessage(Message msg) {
541 if (msg.what == SHOW_DETAIL) {
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200542 handleShowDetail((Record)msg.obj, msg.arg1 != 0);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400543 } else if (msg.what == SET_TILE_VISIBILITY) {
Selim Cineke32010a2014-08-20 23:50:41 +0200544 handleSetTileVisibility((View)msg.obj, msg.arg1);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400545 }
546 }
547 }
548
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200549 private static class Record {
John Spurlock856edeb2014-06-01 20:36:47 -0400550 View detailView;
John Spurlock7f8f22a2014-07-02 18:54:17 -0400551 DetailAdapter detailAdapter;
Adrian Roos1ef80fe2014-07-14 22:53:54 +0200552 }
553
554 private static final class TileRecord extends Record {
555 QSTile<?> tile;
556 QSTileView tileView;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400557 int row;
558 int col;
John Spurlock465cefa2014-08-16 10:39:33 -0400559 boolean scanState;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400560 }
561
562 private final AnimatorListenerAdapter mTeardownDetailWhenDone = new AnimatorListenerAdapter() {
563 public void onAnimationEnd(Animator animation) {
John Spurlock7f8f22a2014-07-02 18:54:17 -0400564 mDetailContent.removeAllViews();
John Spurlock465cefa2014-08-16 10:39:33 -0400565 setDetailRecord(null);
Jorim Jaggi8bc983e2014-12-10 17:45:50 +0100566 mClosingDetail = false;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400567 };
568 };
John Spurlock5729d092014-05-29 17:42:51 -0400569
Selim Cineke32010a2014-08-20 23:50:41 +0200570 private final AnimatorListenerAdapter mHideGridContentWhenDone = new AnimatorListenerAdapter() {
Jason Monk8a2d4fc2014-09-09 15:46:35 -0400571 public void onAnimationCancel(Animator animation) {
572 // If we have been cancelled, remove the listener so that onAnimationEnd doesn't get
573 // called, this will avoid accidentally turning off the grid when we don't want to.
574 animation.removeListener(this);
575 };
576
Selim Cineke32010a2014-08-20 23:50:41 +0200577 @Override
578 public void onAnimationEnd(Animator animation) {
Jason Monk98fa70c2014-10-29 11:03:41 -0400579 // Only hide content if still in detail state.
580 if (mDetailRecord != null) {
581 setGridContentVisibility(false);
582 }
Selim Cineke32010a2014-08-20 23:50:41 +0200583 }
584 };
585
John Spurlock5729d092014-05-29 17:42:51 -0400586 public interface Callback {
John Spurlock7f8f22a2014-07-02 18:54:17 -0400587 void onShowingDetail(QSTile.DetailAdapter detail);
588 void onToggleStateChanged(boolean state);
John Spurlock486b78e2014-07-07 08:37:56 -0400589 void onScanStateChanged(boolean state);
John Spurlock5729d092014-05-29 17:42:51 -0400590 }
John Spurlockaf8d6c42014-05-07 17:49:08 -0400591}