blob: f0952f9641f274b262e57d53c24ea771f5a97159 [file] [log] [blame]
Lucas Dupin957e50c2017-10-10 11:23:27 -07001/*
2 * Copyright (C) 2017 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.keyguard;
18
Lucas Dupinf8e274c2018-02-22 17:01:55 -080019import android.annotation.ColorInt;
Lucas Dupin957e50c2017-10-10 11:23:27 -070020import android.app.PendingIntent;
Lucas Dupin6bd86012017-12-05 17:58:57 -080021import android.arch.lifecycle.LiveData;
22import android.arch.lifecycle.Observer;
Lucas Dupin957e50c2017-10-10 11:23:27 -070023import android.content.Context;
Lucas Dupin957e50c2017-10-10 11:23:27 -070024import android.graphics.Color;
Lucas Dupin6bd86012017-12-05 17:58:57 -080025import android.graphics.drawable.Drawable;
Lucas Dupin957e50c2017-10-10 11:23:27 -070026import android.net.Uri;
Lucas Dupin6bd86012017-12-05 17:58:57 -080027import android.provider.Settings;
Lucas Dupin2a3c3e32018-01-05 17:02:43 -080028import android.text.Layout;
29import android.text.TextUtils;
30import android.text.TextUtils.TruncateAt;
Lucas Dupin957e50c2017-10-10 11:23:27 -070031import android.util.AttributeSet;
Lucas Dupin6bd86012017-12-05 17:58:57 -080032import android.util.Log;
33import android.view.View;
34import android.widget.Button;
Lucas Dupin957e50c2017-10-10 11:23:27 -070035import android.widget.LinearLayout;
36import android.widget.TextView;
37
Lucas Dupinf8e274c2018-02-22 17:01:55 -080038import com.android.internal.annotations.VisibleForTesting;
Lucas Dupin957e50c2017-10-10 11:23:27 -070039import com.android.internal.graphics.ColorUtils;
Lucas Dupin6bd86012017-12-05 17:58:57 -080040import com.android.settingslib.Utils;
41import com.android.systemui.Dependency;
Lucas Dupin957e50c2017-10-10 11:23:27 -070042import com.android.systemui.R;
43import com.android.systemui.keyguard.KeyguardSliceProvider;
Lucas Dupin6bd86012017-12-05 17:58:57 -080044import com.android.systemui.tuner.TunerService;
Lucas Dupin957e50c2017-10-10 11:23:27 -070045
Lucas Dupin6bd86012017-12-05 17:58:57 -080046import java.util.HashMap;
47import java.util.List;
48import java.util.function.Consumer;
49
50import androidx.app.slice.Slice;
51import androidx.app.slice.SliceItem;
52import androidx.app.slice.core.SliceQuery;
Mady Mellor90e9fce2018-01-22 17:30:40 -080053import androidx.app.slice.widget.ListContent;
54import androidx.app.slice.widget.RowContent;
Lucas Dupin6bd86012017-12-05 17:58:57 -080055import androidx.app.slice.widget.SliceLiveData;
Jason Monk2af19982017-11-07 19:38:27 -050056
Lucas Dupin957e50c2017-10-10 11:23:27 -070057/**
58 * View visible under the clock on the lock screen and AoD.
59 */
Lucas Dupin6bd86012017-12-05 17:58:57 -080060public class KeyguardSliceView extends LinearLayout implements View.OnClickListener,
61 Observer<Slice>, TunerService.Tunable {
Lucas Dupin957e50c2017-10-10 11:23:27 -070062
Lucas Dupin6bd86012017-12-05 17:58:57 -080063 private static final String TAG = "KeyguardSliceView";
64 private final HashMap<View, PendingIntent> mClickActions;
65 private Uri mKeyguardSliceUri;
Lucas Dupin957e50c2017-10-10 11:23:27 -070066 private TextView mTitle;
Lucas Dupin6bd86012017-12-05 17:58:57 -080067 private LinearLayout mRow;
Lucas Dupin957e50c2017-10-10 11:23:27 -070068 private int mTextColor;
69 private float mDarkAmount = 0;
70
Lucas Dupin6bd86012017-12-05 17:58:57 -080071 private LiveData<Slice> mLiveData;
72 private int mIconSize;
73 private Consumer<Boolean> mListener;
74 private boolean mHasHeader;
Lucas Dupin2c5fce62018-03-05 19:06:00 -080075 private boolean mHideContent;
Lucas Dupin957e50c2017-10-10 11:23:27 -070076
77 public KeyguardSliceView(Context context) {
78 this(context, null, 0);
79 }
80
81 public KeyguardSliceView(Context context, AttributeSet attrs) {
82 this(context, attrs, 0);
83 }
84
85 public KeyguardSliceView(Context context, AttributeSet attrs, int defStyle) {
86 super(context, attrs, defStyle);
Lucas Dupin6bd86012017-12-05 17:58:57 -080087
88 TunerService tunerService = Dependency.get(TunerService.class);
89 tunerService.addTunable(this, Settings.Secure.KEYGUARD_SLICE_URI);
90
91 mClickActions = new HashMap<>();
Lucas Dupin957e50c2017-10-10 11:23:27 -070092 }
93
94 @Override
95 protected void onFinishInflate() {
96 super.onFinishInflate();
97 mTitle = findViewById(R.id.title);
Lucas Dupin6bd86012017-12-05 17:58:57 -080098 mRow = findViewById(R.id.row);
99 mTextColor = Utils.getColorAttr(mContext, R.attr.wallpaperTextColor);
100 mIconSize = (int) mContext.getResources().getDimension(R.dimen.widget_icon_size);
Lucas Dupin957e50c2017-10-10 11:23:27 -0700101 }
102
103 @Override
104 protected void onAttachedToWindow() {
105 super.onAttachedToWindow();
106
Lucas Dupin957e50c2017-10-10 11:23:27 -0700107 // Make sure we always have the most current slice
Lucas Dupin6bd86012017-12-05 17:58:57 -0800108 mLiveData.observeForever(this);
Lucas Dupin957e50c2017-10-10 11:23:27 -0700109 }
110
111 @Override
112 protected void onDetachedFromWindow() {
113 super.onDetachedFromWindow();
114
Lucas Dupin6bd86012017-12-05 17:58:57 -0800115 mLiveData.removeObserver(this);
Lucas Dupin957e50c2017-10-10 11:23:27 -0700116 }
117
118 private void showSlice(Slice slice) {
Lucas Dupin957e50c2017-10-10 11:23:27 -0700119
Mady Mellor90e9fce2018-01-22 17:30:40 -0800120 ListContent lc = new ListContent(slice);
121 mHasHeader = lc.hasHeader();
122 List<SliceItem> subItems = lc.getRowItems();
Lucas Dupin6bd86012017-12-05 17:58:57 -0800123 if (!mHasHeader) {
Lucas Dupin957e50c2017-10-10 11:23:27 -0700124 mTitle.setVisibility(GONE);
125 } else {
126 mTitle.setVisibility(VISIBLE);
Mady Mellor90e9fce2018-01-22 17:30:40 -0800127 // If there's a header it'll be the first subitem
128 RowContent header = new RowContent(subItems.get(0), true /* showStartItem */);
129 SliceItem mainTitle = header.getTitleItem();
130 CharSequence title = mainTitle != null ? mainTitle.getText() : null;
Lucas Dupin2a3c3e32018-01-05 17:02:43 -0800131 mTitle.setText(title);
132
133 // Check if we're already ellipsizing the text.
134 // We're going to figure out the best possible line break if not.
135 Layout layout = mTitle.getLayout();
136 if (layout != null){
137 final int lineCount = layout.getLineCount();
138 if (lineCount > 0) {
139 if (layout.getEllipsisCount(lineCount - 1) == 0) {
140 mTitle.setText(findBestLineBreak(title));
141 }
142 }
143 }
Lucas Dupin957e50c2017-10-10 11:23:27 -0700144 }
145
Lucas Dupin6bd86012017-12-05 17:58:57 -0800146 mClickActions.clear();
147 final int subItemsCount = subItems.size();
Lucas Dupina2a7a402018-01-12 17:45:51 -0800148 final int blendedColor = getTextColor();
Mady Mellor90e9fce2018-01-22 17:30:40 -0800149 final int startIndex = mHasHeader ? 1 : 0; // First item is header; skip it
150 for (int i = startIndex; i < subItemsCount; i++) {
Lucas Dupin6bd86012017-12-05 17:58:57 -0800151 SliceItem item = subItems.get(i);
Mady Mellor90e9fce2018-01-22 17:30:40 -0800152 RowContent rc = new RowContent(item, true /* showStartItem */);
Lucas Dupin6bd86012017-12-05 17:58:57 -0800153 final Uri itemTag = item.getSlice().getUri();
154 // Try to reuse the view if already exists in the layout
155 KeyguardSliceButton button = mRow.findViewWithTag(itemTag);
156 if (button == null) {
157 button = new KeyguardSliceButton(mContext);
Lucas Dupina2a7a402018-01-12 17:45:51 -0800158 button.setTextColor(blendedColor);
Lucas Dupin6bd86012017-12-05 17:58:57 -0800159 button.setTag(itemTag);
160 } else {
161 mRow.removeView(button);
162 }
Lucas Dupinb16d8232018-01-26 12:44:52 -0800163 mRow.addView(button);
Lucas Dupin6bd86012017-12-05 17:58:57 -0800164
Mady Mellor90e9fce2018-01-22 17:30:40 -0800165 PendingIntent pendingIntent = null;
Alan Viverette85935282018-02-27 22:10:18 +0000166 if (rc.getPrimaryAction() != null) {
167 pendingIntent = rc.getPrimaryAction().getAction();
Lucas Dupin6bd86012017-12-05 17:58:57 -0800168 }
169 mClickActions.put(button, pendingIntent);
170
Lucas Dupin1f7374a2018-02-26 18:08:33 -0800171 final SliceItem titleItem = rc.getTitleItem();
172 button.setText(titleItem == null ? null : titleItem.getText());
Lucas Dupin6bd86012017-12-05 17:58:57 -0800173
174 Drawable iconDrawable = null;
175 SliceItem icon = SliceQuery.find(item.getSlice(),
176 android.app.slice.SliceItem.FORMAT_IMAGE);
177 if (icon != null) {
178 iconDrawable = icon.getIcon().loadDrawable(mContext);
179 final int width = (int) (iconDrawable.getIntrinsicWidth()
180 / (float) iconDrawable.getIntrinsicHeight() * mIconSize);
181 iconDrawable.setBounds(0, 0, Math.max(width, 1), mIconSize);
182 }
Lucas Dupinacb0eed2018-03-03 14:05:04 -0800183 button.setCompoundDrawables(iconDrawable, null, null, null);
Lucas Dupin6bd86012017-12-05 17:58:57 -0800184 button.setOnClickListener(this);
Lucas Dupin957e50c2017-10-10 11:23:27 -0700185 }
186
Lucas Dupin6bd86012017-12-05 17:58:57 -0800187 // Removing old views
188 for (int i = 0; i < mRow.getChildCount(); i++) {
189 View child = mRow.getChildAt(i);
190 if (!mClickActions.containsKey(child)) {
191 mRow.removeView(child);
192 i--;
193 }
194 }
195
Lucas Dupin2c5fce62018-03-05 19:06:00 -0800196 updateVisibility();
197 mListener.accept(mHasHeader);
198 }
199
200 private void updateVisibility() {
201 final boolean hasContent = mHasHeader || mRow.getChildCount() > 0;
202 final int visibility = hasContent && !mHideContent ? VISIBLE : GONE;
Lucas Dupin957e50c2017-10-10 11:23:27 -0700203 if (visibility != getVisibility()) {
204 setVisibility(visibility);
205 }
206 }
207
Lucas Dupin2a3c3e32018-01-05 17:02:43 -0800208 /**
209 * Breaks a string in 2 lines where both have similar character count
210 * but first line is always longer.
211 *
212 * @param charSequence Original text.
213 * @return Optimal string.
214 */
215 private CharSequence findBestLineBreak(CharSequence charSequence) {
216 if (TextUtils.isEmpty(charSequence)) {
217 return charSequence;
218 }
219
220 String source = charSequence.toString();
221 // Ignore if there is only 1 word,
222 // or if line breaks were manually set.
223 if (source.contains("\n") || !source.contains(" ")) {
224 return source;
225 }
226
227 final String[] words = source.split(" ");
228 final StringBuilder optimalString = new StringBuilder(source.length());
229 int current = 0;
230 while (optimalString.length() < source.length() - optimalString.length()) {
231 optimalString.append(words[current]);
232 if (current < words.length - 1) {
233 optimalString.append(" ");
234 }
235 current++;
236 }
237 optimalString.append("\n");
238 for (int i = current; i < words.length; i++) {
239 optimalString.append(words[i]);
240 if (current < words.length - 1) {
241 optimalString.append(" ");
242 }
243 }
244
245 return optimalString.toString();
246 }
247
Lucas Dupin957e50c2017-10-10 11:23:27 -0700248 public void setDark(float darkAmount) {
249 mDarkAmount = darkAmount;
250 updateTextColors();
251 }
252
Lucas Dupin957e50c2017-10-10 11:23:27 -0700253 private void updateTextColors() {
Lucas Dupina2a7a402018-01-12 17:45:51 -0800254 final int blendedColor = getTextColor();
Lucas Dupin957e50c2017-10-10 11:23:27 -0700255 mTitle.setTextColor(blendedColor);
Lucas Dupin6bd86012017-12-05 17:58:57 -0800256 int childCount = mRow.getChildCount();
257 for (int i = 0; i < childCount; i++) {
258 View v = mRow.getChildAt(i);
259 if (v instanceof Button) {
260 ((Button) v).setTextColor(blendedColor);
261 }
262 }
Lucas Dupin957e50c2017-10-10 11:23:27 -0700263 }
264
Lucas Dupin6bd86012017-12-05 17:58:57 -0800265 @Override
266 public void onClick(View v) {
267 final PendingIntent action = mClickActions.get(v);
268 if (action != null) {
269 try {
270 action.send();
271 } catch (PendingIntent.CanceledException e) {
272 Log.i(TAG, "Pending intent cancelled, nothing to launch", e);
273 }
274 }
275 }
276
277 public void setListener(Consumer<Boolean> listener) {
278 mListener = listener;
279 }
280
281 public boolean hasHeader() {
282 return mHasHeader;
283 }
284
285 /**
286 * LiveData observer lifecycle.
287 * @param slice the new slice content.
288 */
289 @Override
290 public void onChanged(Slice slice) {
291 showSlice(slice);
292 }
293
294 @Override
295 public void onTuningChanged(String key, String newValue) {
296 setupUri(newValue);
297 }
298
299 public void setupUri(String uriString) {
300 if (uriString == null) {
301 uriString = KeyguardSliceProvider.KEYGUARD_SLICE_URI;
302 }
303
304 boolean wasObserving = false;
305 if (mLiveData != null && mLiveData.hasActiveObservers()) {
306 wasObserving = true;
307 mLiveData.removeObserver(this);
308 }
309
310 mKeyguardSliceUri = Uri.parse(uriString);
311 mLiveData = SliceLiveData.fromUri(mContext, mKeyguardSliceUri);
312
313 if (wasObserving) {
314 mLiveData.observeForever(this);
Lucas Dupin6bd86012017-12-05 17:58:57 -0800315 }
316 }
317
Lucas Dupinf8e274c2018-02-22 17:01:55 -0800318 @VisibleForTesting
319 int getTextColor() {
Lucas Dupina2a7a402018-01-12 17:45:51 -0800320 return ColorUtils.blendARGB(mTextColor, Color.WHITE, mDarkAmount);
321 }
322
Lucas Dupinf8e274c2018-02-22 17:01:55 -0800323 @VisibleForTesting
324 void setTextColor(@ColorInt int textColor) {
325 mTextColor = textColor;
326 updateTextColors();
327 }
328
Lucas Dupin2c5fce62018-03-05 19:06:00 -0800329 public void setHideContent(boolean hideContent) {
330 mHideContent = hideContent;
331 updateVisibility();
332 }
333
Lucas Dupin4603fe22018-03-08 16:51:16 -0800334 public static class Row extends LinearLayout {
335
336 public Row(Context context) {
337 super(context);
338 }
339
340 public Row(Context context, AttributeSet attrs) {
341 super(context, attrs);
342 }
343
344 public Row(Context context, AttributeSet attrs, int defStyleAttr) {
345 super(context, attrs, defStyleAttr);
346 }
347
348 public Row(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
349 super(context, attrs, defStyleAttr, defStyleRes);
350 }
351
352 @Override
353 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
354 int width = MeasureSpec.getSize(widthMeasureSpec);
355 for (int i = 0; i < getChildCount(); i++) {
356 View child = getChildAt(i);
357 if (child instanceof KeyguardSliceButton) {
358 ((KeyguardSliceButton) child).setMaxWidth(width / 2);
359 }
360 }
361 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
362 }
363 }
364
Lucas Dupin6bd86012017-12-05 17:58:57 -0800365 /**
366 * Representation of an item that appears under the clock on main keyguard message.
Lucas Dupin6bd86012017-12-05 17:58:57 -0800367 */
368 private class KeyguardSliceButton extends Button {
369
Lucas Dupin6bd86012017-12-05 17:58:57 -0800370 public KeyguardSliceButton(Context context) {
Lucas Dupinb16d8232018-01-26 12:44:52 -0800371 super(context, null /* attrs */, 0 /* styleAttr */,
Lucas Dupin6bd86012017-12-05 17:58:57 -0800372 com.android.keyguard.R.style.TextAppearance_Keyguard_Secondary);
Lucas Dupin6bd86012017-12-05 17:58:57 -0800373 int horizontalPadding = (int) context.getResources()
374 .getDimension(R.dimen.widget_horizontal_padding);
Lucas Dupinb16d8232018-01-26 12:44:52 -0800375 setPadding(horizontalPadding / 2, 0, horizontalPadding / 2, 0);
Lucas Dupin6bd86012017-12-05 17:58:57 -0800376 setCompoundDrawablePadding((int) context.getResources()
377 .getDimension(R.dimen.widget_icon_padding));
Lucas Dupin2a3c3e32018-01-05 17:02:43 -0800378 setMaxLines(1);
379 setEllipsize(TruncateAt.END);
Lucas Dupin6bd86012017-12-05 17:58:57 -0800380 }
Lucas Dupinacb0eed2018-03-03 14:05:04 -0800381
382 @Override
383 public void setTextColor(int color) {
384 super.setTextColor(color);
385 updateDrawableColors();
386 }
387
388 @Override
389 public void setCompoundDrawables(Drawable left, Drawable top, Drawable right,
390 Drawable bottom) {
391 super.setCompoundDrawables(left, top, right, bottom);
392 updateDrawableColors();
393 }
394
395 private void updateDrawableColors() {
396 final int color = getCurrentTextColor();
397 for (Drawable drawable : getCompoundDrawables()) {
398 if (drawable != null) {
399 drawable.setTint(color);
400 }
401 }
402 }
Lucas Dupin957e50c2017-10-10 11:23:27 -0700403 }
404}