blob: 5ccfd8c516ade56b082fea80cb2cdddb5f9f3a47 [file] [log] [blame]
Beth Thibodeau7b6c1782020-03-05 11:43:51 -05001/*
2 * Copyright (C) 2020 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.media;
18
19import android.annotation.LayoutRes;
20import android.app.PendingIntent;
21import android.content.ComponentName;
Beth Thibodeaudba74bc2020-04-27 14:17:08 -040022import android.content.ContentResolver;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050023import android.content.Context;
24import android.content.Intent;
Beth Thibodeau23a33ab2020-04-07 20:51:57 -040025import android.content.SharedPreferences;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050026import android.content.pm.PackageManager;
27import android.content.pm.ResolveInfo;
28import android.content.res.ColorStateList;
29import android.graphics.Bitmap;
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -040030import android.graphics.ImageDecoder;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050031import android.graphics.drawable.Drawable;
32import android.graphics.drawable.GradientDrawable;
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -040033import android.graphics.drawable.Icon;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050034import android.graphics.drawable.RippleDrawable;
Beth Thibodeau23a33ab2020-04-07 20:51:57 -040035import android.media.MediaDescription;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050036import android.media.MediaMetadata;
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -040037import android.media.ThumbnailUtils;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050038import android.media.session.MediaController;
39import android.media.session.MediaSession;
40import android.media.session.PlaybackState;
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -040041import android.net.Uri;
Beth Thibodeau23a33ab2020-04-07 20:51:57 -040042import android.service.media.MediaBrowserService;
Beth Thibodeaudba74bc2020-04-27 14:17:08 -040043import android.text.TextUtils;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050044import android.util.Log;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050045import android.view.LayoutInflater;
46import android.view.View;
Robert Snoeberger3cc22222020-03-25 15:36:31 -040047import android.view.View.OnAttachStateChangeListener;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050048import android.view.ViewGroup;
49import android.widget.ImageButton;
50import android.widget.ImageView;
51import android.widget.LinearLayout;
52import android.widget.TextView;
53
Robert Snoeberger9a7409b2020-04-09 18:12:27 -040054import androidx.annotation.Nullable;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050055import androidx.core.graphics.drawable.RoundedBitmapDrawable;
56import androidx.core.graphics.drawable.RoundedBitmapDrawableFactory;
57
Robert Snoeberger9a7409b2020-04-09 18:12:27 -040058import com.android.settingslib.media.LocalMediaManager;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050059import com.android.settingslib.media.MediaDevice;
60import com.android.settingslib.media.MediaOutputSliceConstants;
61import com.android.settingslib.widget.AdaptiveIcon;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050062import com.android.systemui.R;
63import com.android.systemui.plugins.ActivityStarter;
Beth Thibodeau23a33ab2020-04-07 20:51:57 -040064import com.android.systemui.qs.QSMediaBrowser;
Robert Snoeberger3cc22222020-03-25 15:36:31 -040065import com.android.systemui.util.Assert;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050066
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -040067import java.io.IOException;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050068import java.util.List;
69import java.util.concurrent.Executor;
70
71/**
72 * Base media control panel for System UI
73 */
Robert Snoeberger3cc22222020-03-25 15:36:31 -040074public class MediaControlPanel {
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050075 private static final String TAG = "MediaControlPanel";
Robert Snoeberger9a7409b2020-04-09 18:12:27 -040076 @Nullable private final LocalMediaManager mLocalMediaManager;
Beth Thibodeaua51c3142020-03-17 17:27:04 -040077 private final Executor mForegroundExecutor;
Beth Thibodeau23a33ab2020-04-07 20:51:57 -040078 protected final Executor mBackgroundExecutor;
Beth Thibodeaue561c002020-04-23 17:33:00 -040079 private final ActivityStarter mActivityStarter;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050080
81 private Context mContext;
82 protected LinearLayout mMediaNotifView;
83 private View mSeamless;
84 private MediaSession.Token mToken;
85 private MediaController mController;
86 private int mForegroundColor;
87 private int mBackgroundColor;
Robert Snoeberger9a7409b2020-04-09 18:12:27 -040088 private MediaDevice mDevice;
Beth Thibodeau23a33ab2020-04-07 20:51:57 -040089 protected ComponentName mServiceComponent;
Robert Snoeberger3cc22222020-03-25 15:36:31 -040090 private boolean mIsRegistered = false;
Beth Thibodeaua3d90982020-04-13 23:42:48 -040091 private String mKey;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -050092
93 private final int[] mActionIds;
94
Beth Thibodeau23a33ab2020-04-07 20:51:57 -040095 public static final String MEDIA_PREFERENCES = "media_control_prefs";
96 public static final String MEDIA_PREFERENCE_KEY = "browser_components";
97 private SharedPreferences mSharedPrefs;
98 private boolean mCheckedForResumption = false;
99
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500100 // Button IDs used in notifications
101 protected static final int[] NOTIF_ACTION_IDS = {
102 com.android.internal.R.id.action0,
103 com.android.internal.R.id.action1,
104 com.android.internal.R.id.action2,
105 com.android.internal.R.id.action3,
106 com.android.internal.R.id.action4
107 };
108
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400109 // URI fields to try loading album art from
110 private static final String[] ART_URIS = {
111 MediaMetadata.METADATA_KEY_ALBUM_ART_URI,
112 MediaMetadata.METADATA_KEY_ART_URI,
113 MediaMetadata.METADATA_KEY_DISPLAY_ICON_URI
114 };
115
Robert Snoeberger3cc22222020-03-25 15:36:31 -0400116 private final MediaController.Callback mSessionCallback = new MediaController.Callback() {
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500117 @Override
118 public void onSessionDestroyed() {
119 Log.d(TAG, "session destroyed");
120 mController.unregisterCallback(mSessionCallback);
121 clearControls();
Robert Snoeberger3cc22222020-03-25 15:36:31 -0400122 makeInactive();
123 }
Robert Snoeberger3cc22222020-03-25 15:36:31 -0400124 @Override
Robert Snoeberger445d4412020-04-15 00:03:13 -0400125 public void onPlaybackStateChanged(PlaybackState state) {
126 final int s = state != null ? state.getState() : PlaybackState.STATE_NONE;
Beth Thibodeaud664de22020-04-28 16:29:36 -0400127 if (s == PlaybackState.STATE_NONE) {
Robert Snoeberger445d4412020-04-15 00:03:13 -0400128 Log.d(TAG, "playback state change will trigger resumption, state=" + state);
Robert Snoeberger3cc22222020-03-25 15:36:31 -0400129 clearControls();
130 makeInactive();
131 }
132 }
133 };
134
135 private final OnAttachStateChangeListener mStateListener = new OnAttachStateChangeListener() {
136 @Override
137 public void onViewAttachedToWindow(View unused) {
138 makeActive();
139 }
140 @Override
141 public void onViewDetachedFromWindow(View unused) {
142 makeInactive();
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500143 }
144 };
145
Robert Snoeberger9a7409b2020-04-09 18:12:27 -0400146 private final LocalMediaManager.DeviceCallback mDeviceCallback =
147 new LocalMediaManager.DeviceCallback() {
148 @Override
149 public void onDeviceListUpdate(List<MediaDevice> devices) {
150 if (mLocalMediaManager == null) {
151 return;
152 }
153 MediaDevice currentDevice = mLocalMediaManager.getCurrentConnectedDevice();
154 // Check because this can be called several times while changing devices
155 if (mDevice == null || !mDevice.equals(currentDevice)) {
156 mDevice = currentDevice;
157 updateDevice(mDevice);
158 }
159 }
160
161 @Override
162 public void onSelectedDeviceStateChanged(MediaDevice device, int state) {
163 if (mDevice == null || !mDevice.equals(device)) {
164 mDevice = device;
165 updateDevice(mDevice);
166 }
167 }
168 };
169
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500170 /**
171 * Initialize a new control panel
172 * @param context
173 * @param parent
Robert Snoeberger9a7409b2020-04-09 18:12:27 -0400174 * @param routeManager Manager used to listen for device change events.
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500175 * @param layoutId layout resource to use for this control panel
176 * @param actionIds resource IDs for action buttons in the layout
Beth Thibodeaua51c3142020-03-17 17:27:04 -0400177 * @param foregroundExecutor foreground executor
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500178 * @param backgroundExecutor background executor, used for processing artwork
Beth Thibodeaue561c002020-04-23 17:33:00 -0400179 * @param activityStarter activity starter
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500180 */
Robert Snoeberger445d4412020-04-15 00:03:13 -0400181 public MediaControlPanel(Context context, ViewGroup parent,
Robert Snoeberger9a7409b2020-04-09 18:12:27 -0400182 @Nullable LocalMediaManager routeManager, @LayoutRes int layoutId, int[] actionIds,
Beth Thibodeaue561c002020-04-23 17:33:00 -0400183 Executor foregroundExecutor, Executor backgroundExecutor,
184 ActivityStarter activityStarter) {
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500185 mContext = context;
186 LayoutInflater inflater = LayoutInflater.from(mContext);
187 mMediaNotifView = (LinearLayout) inflater.inflate(layoutId, parent, false);
Robert Snoeberger3cc22222020-03-25 15:36:31 -0400188 // TODO(b/150854549): removeOnAttachStateChangeListener when this doesn't inflate views
189 // mStateListener shouldn't need to be unregistered since this object shares the same
190 // lifecycle with the inflated view. It would be better, however, if this controller used an
191 // attach/detach of views instead of inflating them in the constructor, which would allow
192 // mStateListener to be unregistered in detach.
193 mMediaNotifView.addOnAttachStateChangeListener(mStateListener);
Robert Snoeberger9a7409b2020-04-09 18:12:27 -0400194 mLocalMediaManager = routeManager;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500195 mActionIds = actionIds;
Beth Thibodeaua51c3142020-03-17 17:27:04 -0400196 mForegroundExecutor = foregroundExecutor;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500197 mBackgroundExecutor = backgroundExecutor;
Beth Thibodeaue561c002020-04-23 17:33:00 -0400198 mActivityStarter = activityStarter;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500199 }
200
201 /**
202 * Get the view used to display media controls
203 * @return the view
204 */
205 public View getView() {
206 return mMediaNotifView;
207 }
208
209 /**
210 * Get the context
211 * @return context
212 */
213 public Context getContext() {
214 return mContext;
215 }
216
217 /**
218 * Update the media panel view for the given media session
219 * @param token
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400220 * @param iconDrawable
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400221 * @param largeIcon
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500222 * @param iconColor
223 * @param bgColor
224 * @param contentIntent
225 * @param appNameString
Beth Thibodeaua3d90982020-04-13 23:42:48 -0400226 * @param key
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500227 */
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400228 public void setMediaSession(MediaSession.Token token, Drawable iconDrawable, Icon largeIcon,
229 int iconColor, int bgColor, PendingIntent contentIntent, String appNameString,
230 String key) {
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400231 // Ensure that component names are updated if token has changed
232 if (mToken == null || !mToken.equals(token)) {
233 mToken = token;
234 mServiceComponent = null;
235 mCheckedForResumption = false;
236 }
237
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500238 mForegroundColor = iconColor;
239 mBackgroundColor = bgColor;
240 mController = new MediaController(mContext, mToken);
Beth Thibodeaua3d90982020-04-13 23:42:48 -0400241 mKey = key;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500242
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400243 // Try to find a browser service component for this app
244 // TODO also check for a media button receiver intended for restarting (b/154127084)
245 // Only check if we haven't tried yet or the session token changed
Robert Snoeberger44299172020-04-24 22:22:21 -0400246 final String pkgName = mController.getPackageName();
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400247 if (mServiceComponent == null && !mCheckedForResumption) {
248 Log.d(TAG, "Checking for service component");
249 PackageManager pm = mContext.getPackageManager();
250 Intent resumeIntent = new Intent(MediaBrowserService.SERVICE_INTERFACE);
251 List<ResolveInfo> resumeInfo = pm.queryIntentServices(resumeIntent, 0);
252 if (resumeInfo != null) {
253 for (ResolveInfo inf : resumeInfo) {
254 if (inf.serviceInfo.packageName.equals(mController.getPackageName())) {
255 mBackgroundExecutor.execute(() ->
256 tryUpdateResumptionList(inf.getComponentInfo().getComponentName()));
257 break;
258 }
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500259 }
260 }
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400261 mCheckedForResumption = true;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500262 }
263
264 mController.registerCallback(mSessionCallback);
265
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500266 mMediaNotifView.setBackgroundTintList(ColorStateList.valueOf(mBackgroundColor));
267
268 // Click action
Beth Thibodeaua51c3142020-03-17 17:27:04 -0400269 if (contentIntent != null) {
270 mMediaNotifView.setOnClickListener(v -> {
Beth Thibodeaue561c002020-04-23 17:33:00 -0400271 mActivityStarter.postStartActivityDismissingKeyguard(contentIntent);
Beth Thibodeaua51c3142020-03-17 17:27:04 -0400272 });
273 }
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500274
275 // App icon
276 ImageView appIcon = mMediaNotifView.findViewById(R.id.icon);
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500277 iconDrawable.setTint(mForegroundColor);
278 appIcon.setImageDrawable(iconDrawable);
279
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500280 // Transfer chip
281 mSeamless = mMediaNotifView.findViewById(R.id.media_seamless);
Robert Snoeberger44299172020-04-24 22:22:21 -0400282 if (mSeamless != null) {
283 if (mLocalMediaManager != null) {
284 mSeamless.setVisibility(View.VISIBLE);
285 updateDevice(mLocalMediaManager.getCurrentConnectedDevice());
286 mSeamless.setOnClickListener(v -> {
287 final Intent intent = new Intent()
288 .setAction(MediaOutputSliceConstants.ACTION_MEDIA_OUTPUT)
289 .putExtra(MediaOutputSliceConstants.EXTRA_PACKAGE_NAME,
290 mController.getPackageName())
291 .putExtra(MediaOutputSliceConstants.KEY_MEDIA_SESSION_TOKEN, mToken);
292 mActivityStarter.startActivity(intent, false, true /* dismissShade */,
293 Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
294 });
295 } else {
296 Log.d(TAG, "LocalMediaManager is null. Not binding output chip for pkg=" + pkgName);
297 }
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500298 }
299
Robert Snoeberger3cc22222020-03-25 15:36:31 -0400300 makeActive();
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400301
302 // App title (not in mini player)
303 TextView appName = mMediaNotifView.findViewById(R.id.app_name);
304 if (appName != null) {
305 appName.setText(appNameString);
306 appName.setTextColor(mForegroundColor);
307 }
308
309 MediaMetadata mediaMetadata = mController.getMetadata();
310 if (mediaMetadata == null) {
311 Log.e(TAG, "Media metadata was null");
312 return;
313 }
314
315 ImageView albumView = mMediaNotifView.findViewById(R.id.album_art);
316 if (albumView != null) {
317 // Resize art in a background thread
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400318 mBackgroundExecutor.execute(() -> processAlbumArt(mediaMetadata, largeIcon, albumView));
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400319 }
320
321 // Song name
322 TextView titleText = mMediaNotifView.findViewById(R.id.header_title);
323 String songName = mediaMetadata.getString(MediaMetadata.METADATA_KEY_TITLE);
324 titleText.setText(songName);
325 titleText.setTextColor(mForegroundColor);
326
327 // Artist name (not in mini player)
328 TextView artistText = mMediaNotifView.findViewById(R.id.header_artist);
329 if (artistText != null) {
330 String artistName = mediaMetadata.getString(MediaMetadata.METADATA_KEY_ARTIST);
331 artistText.setText(artistName);
332 artistText.setTextColor(mForegroundColor);
333 }
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500334 }
335
336 /**
337 * Return the token for the current media session
338 * @return the token
339 */
340 public MediaSession.Token getMediaSessionToken() {
341 return mToken;
342 }
343
344 /**
345 * Get the current media controller
346 * @return the controller
347 */
348 public MediaController getController() {
349 return mController;
350 }
351
352 /**
353 * Get the name of the package associated with the current media controller
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400354 * @return the package name, or null if no controller
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500355 */
356 public String getMediaPlayerPackage() {
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400357 if (mController == null) {
358 return null;
359 }
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500360 return mController.getPackageName();
361 }
362
363 /**
Beth Thibodeaua3d90982020-04-13 23:42:48 -0400364 * Return the original notification's key
365 * @return The notification key
366 */
367 public String getKey() {
368 return mKey;
369 }
370
371 /**
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500372 * Check whether this player has an attached media session.
373 * @return whether there is a controller with a current media session.
374 */
375 public boolean hasMediaSession() {
376 return mController != null && mController.getPlaybackState() != null;
377 }
378
379 /**
380 * Check whether the media controlled by this player is currently playing
381 * @return whether it is playing, or false if no controller information
382 */
383 public boolean isPlaying() {
384 return isPlaying(mController);
385 }
386
387 /**
388 * Check whether the given controller is currently playing
389 * @param controller media controller to check
390 * @return whether it is playing, or false if no controller information
391 */
392 protected boolean isPlaying(MediaController controller) {
393 if (controller == null) {
394 return false;
395 }
396
397 PlaybackState state = controller.getPlaybackState();
398 if (state == null) {
399 return false;
400 }
401
402 return (state.getState() == PlaybackState.STATE_PLAYING);
403 }
404
405 /**
406 * Process album art for layout
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400407 * @param description media description
408 * @param albumView view to hold the album art
409 */
410 protected void processAlbumArt(MediaDescription description, ImageView albumView) {
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400411 Bitmap albumArt = null;
412
413 // First try loading from URI
414 albumArt = loadBitmapFromUri(description.getIconUri());
415
416 // Then check bitmap
417 if (albumArt == null) {
418 albumArt = description.getIconBitmap();
419 }
420
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400421 processAlbumArtInternal(albumArt, albumView);
422 }
423
424 /**
425 * Process album art for layout
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500426 * @param metadata media metadata
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400427 * @param largeIcon from notification, checked as a fallback if metadata does not have art
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500428 * @param albumView view to hold the album art
429 */
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400430 private void processAlbumArt(MediaMetadata metadata, Icon largeIcon, ImageView albumView) {
431 Bitmap albumArt = null;
432
433 // First look in URI fields
434 for (String field : ART_URIS) {
435 String uriString = metadata.getString(field);
Beth Thibodeaudba74bc2020-04-27 14:17:08 -0400436 if (!TextUtils.isEmpty(uriString)) {
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400437 albumArt = loadBitmapFromUri(Uri.parse(uriString));
438 if (albumArt != null) {
439 Log.d(TAG, "loaded art from " + field);
440 break;
441 }
442 }
443 }
444
445 // Then check bitmap field
446 if (albumArt == null) {
447 albumArt = metadata.getBitmap(MediaMetadata.METADATA_KEY_ALBUM_ART);
448 }
449
450 // Finally try the notification's largeIcon
451 if (albumArt == null && largeIcon != null) {
452 albumArt = largeIcon.getBitmap();
453 }
454
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400455 processAlbumArtInternal(albumArt, albumView);
456 }
457
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400458 /**
459 * Load a bitmap from a URI
460 * @param uri
461 * @return bitmap, or null if couldn't be loaded
462 */
463 private Bitmap loadBitmapFromUri(Uri uri) {
Beth Thibodeaudba74bc2020-04-27 14:17:08 -0400464 // ImageDecoder requires a scheme of the following types
465 if (uri.getScheme() == null) {
466 return null;
467 }
468
469 if (!uri.getScheme().equals(ContentResolver.SCHEME_CONTENT)
470 && !uri.getScheme().equals(ContentResolver.SCHEME_ANDROID_RESOURCE)
471 && !uri.getScheme().equals(ContentResolver.SCHEME_FILE)) {
472 return null;
473 }
474
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400475 ImageDecoder.Source source = ImageDecoder.createSource(mContext.getContentResolver(), uri);
476 try {
477 return ImageDecoder.decodeBitmap(source);
478 } catch (IOException e) {
479 e.printStackTrace();
480 return null;
481 }
482 }
483
484 /**
485 * Resize and crop the image if provided and update the control view
486 * @param albumArt Bitmap of art to display, or null to hide view
487 * @param albumView View that will hold the art
488 */
489 private void processAlbumArtInternal(@Nullable Bitmap albumArt, ImageView albumView) {
490 // Resize
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500491 RoundedBitmapDrawable roundedDrawable = null;
492 if (albumArt != null) {
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400493 float radius = mContext.getResources().getDimension(R.dimen.qs_media_corner_radius);
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500494 Bitmap original = albumArt.copy(Bitmap.Config.ARGB_8888, true);
495 int albumSize = (int) mContext.getResources().getDimension(
496 R.dimen.qs_media_album_size);
Beth Thibodeaud3ad81d2020-04-20 23:26:25 -0400497 Bitmap scaled = ThumbnailUtils.extractThumbnail(original, albumSize, albumSize);
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500498 roundedDrawable = RoundedBitmapDrawableFactory.create(mContext.getResources(), scaled);
499 roundedDrawable.setCornerRadius(radius);
500 } else {
501 Log.e(TAG, "No album art available");
502 }
503
504 // Now that it's resized, update the UI
505 final RoundedBitmapDrawable result = roundedDrawable;
Beth Thibodeaua51c3142020-03-17 17:27:04 -0400506 mForegroundExecutor.execute(() -> {
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500507 if (result != null) {
508 albumView.setImageDrawable(result);
509 albumView.setVisibility(View.VISIBLE);
510 } else {
511 albumView.setImageDrawable(null);
512 albumView.setVisibility(View.GONE);
513 }
514 });
515 }
516
517 /**
518 * Update the current device information
519 * @param device device information to display
520 */
Robert Snoeberger9a7409b2020-04-09 18:12:27 -0400521 private void updateDevice(MediaDevice device) {
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500522 if (mSeamless == null) {
523 return;
524 }
Beth Thibodeaua51c3142020-03-17 17:27:04 -0400525 mForegroundExecutor.execute(() -> {
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500526 updateChipInternal(device);
527 });
528 }
529
530 private void updateChipInternal(MediaDevice device) {
531 ColorStateList fgTintList = ColorStateList.valueOf(mForegroundColor);
532
533 // Update the outline color
534 LinearLayout viewLayout = (LinearLayout) mSeamless;
535 RippleDrawable bkgDrawable = (RippleDrawable) viewLayout.getBackground();
536 GradientDrawable rect = (GradientDrawable) bkgDrawable.getDrawable(0);
537 rect.setStroke(2, mForegroundColor);
538 rect.setColor(mBackgroundColor);
539
540 ImageView iconView = mSeamless.findViewById(R.id.media_seamless_image);
541 TextView deviceName = mSeamless.findViewById(R.id.media_seamless_text);
542 deviceName.setTextColor(fgTintList);
543
544 if (device != null) {
545 Drawable icon = device.getIcon();
546 iconView.setVisibility(View.VISIBLE);
547 iconView.setImageTintList(fgTintList);
548
549 if (icon instanceof AdaptiveIcon) {
550 AdaptiveIcon aIcon = (AdaptiveIcon) icon;
551 aIcon.setBackgroundColor(mBackgroundColor);
552 iconView.setImageDrawable(aIcon);
553 } else {
554 iconView.setImageDrawable(icon);
555 }
556 deviceName.setText(device.getName());
557 } else {
558 // Reset to default
Robert Snoeberger44299172020-04-24 22:22:21 -0400559 Log.d(TAG, "device is null. Not binding output chip.");
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500560 iconView.setVisibility(View.GONE);
561 deviceName.setText(com.android.internal.R.string.ext_media_seamless_action);
562 }
563 }
564
565 /**
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400566 * Puts controls into a resumption state if possible, or calls removePlayer if no component was
567 * found that could resume playback
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500568 */
569 public void clearControls() {
Robert Snoeberger445d4412020-04-15 00:03:13 -0400570 Log.d(TAG, "clearControls to resumption state package=" + getMediaPlayerPackage());
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400571 if (mServiceComponent == null) {
572 // If we don't have a way to resume, just remove the player altogether
573 Log.d(TAG, "Removing unresumable controls");
574 removePlayer();
575 return;
576 }
577 resetButtons();
578 }
579
580 /**
581 * Hide the media buttons and show only a restart button
582 */
583 protected void resetButtons() {
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500584 // Hide all the old buttons
585 for (int i = 0; i < mActionIds.length; i++) {
586 ImageButton thisBtn = mMediaNotifView.findViewById(mActionIds[i]);
587 if (thisBtn != null) {
588 thisBtn.setVisibility(View.GONE);
589 }
590 }
591
592 // Add a restart button
593 ImageButton btn = mMediaNotifView.findViewById(mActionIds[0]);
594 btn.setOnClickListener(v -> {
595 Log.d(TAG, "Attempting to restart session");
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400596 QSMediaBrowser browser = new QSMediaBrowser(mContext, null, mServiceComponent);
597 browser.restart();
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500598 });
599 btn.setImageDrawable(mContext.getResources().getDrawable(R.drawable.lb_ic_play));
600 btn.setImageTintList(ColorStateList.valueOf(mForegroundColor));
601 btn.setVisibility(View.VISIBLE);
602 }
603
Robert Snoeberger3cc22222020-03-25 15:36:31 -0400604 private void makeActive() {
605 Assert.isMainThread();
606 if (!mIsRegistered) {
Robert Snoeberger9a7409b2020-04-09 18:12:27 -0400607 if (mLocalMediaManager != null) {
608 mLocalMediaManager.registerCallback(mDeviceCallback);
609 mLocalMediaManager.startScan();
610 }
Robert Snoeberger3cc22222020-03-25 15:36:31 -0400611 mIsRegistered = true;
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500612 }
613 }
Robert Snoeberger3cc22222020-03-25 15:36:31 -0400614
615 private void makeInactive() {
616 Assert.isMainThread();
617 if (mIsRegistered) {
Robert Snoeberger9a7409b2020-04-09 18:12:27 -0400618 if (mLocalMediaManager != null) {
619 mLocalMediaManager.stopScan();
620 mLocalMediaManager.unregisterCallback(mDeviceCallback);
621 }
Robert Snoeberger3cc22222020-03-25 15:36:31 -0400622 mIsRegistered = false;
623 }
624 }
625
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400626 /**
627 * Verify that we can connect to the given component with a MediaBrowser, and if so, add that
628 * component to the list of resumption components
629 */
630 private void tryUpdateResumptionList(ComponentName componentName) {
631 Log.d(TAG, "Testing if we can connect to " + componentName);
632 QSMediaBrowser.testConnection(mContext,
633 new QSMediaBrowser.Callback() {
634 @Override
635 public void onConnected() {
636 Log.d(TAG, "yes we can resume with " + componentName);
637 mServiceComponent = componentName;
638 updateResumptionList(componentName);
639 }
640
641 @Override
642 public void onError() {
643 Log.d(TAG, "Cannot resume with " + componentName);
644 mServiceComponent = null;
Beth Thibodeau89f5c762020-04-21 13:09:55 -0400645 if (!hasMediaSession()) {
646 // If it's not active and we can't resume, remove
647 removePlayer();
648 }
Beth Thibodeau23a33ab2020-04-07 20:51:57 -0400649 }
650 },
651 componentName);
652 }
653
654 /**
655 * Add the component to the saved list of media browser services, checking for duplicates and
656 * removing older components that exceed the maximum limit
657 * @param componentName
658 */
659 private synchronized void updateResumptionList(ComponentName componentName) {
660 // Add to front of saved list
661 if (mSharedPrefs == null) {
662 mSharedPrefs = mContext.getSharedPreferences(MEDIA_PREFERENCES, 0);
663 }
664 String componentString = componentName.flattenToString();
665 String listString = mSharedPrefs.getString(MEDIA_PREFERENCE_KEY, null);
666 if (listString == null) {
667 listString = componentString;
668 } else {
669 String[] components = listString.split(QSMediaBrowser.DELIMITER);
670 StringBuilder updated = new StringBuilder(componentString);
671 int nBrowsers = 1;
672 for (int i = 0; i < components.length
673 && nBrowsers < QSMediaBrowser.MAX_RESUMPTION_CONTROLS; i++) {
674 if (componentString.equals(components[i])) {
675 continue;
676 }
677 updated.append(QSMediaBrowser.DELIMITER).append(components[i]);
678 nBrowsers++;
679 }
680 listString = updated.toString();
681 }
682 mSharedPrefs.edit().putString(MEDIA_PREFERENCE_KEY, listString).apply();
683 }
684
685 /**
686 * Called when a player can't be resumed to give it an opportunity to hide or remove itself
687 */
688 protected void removePlayer() { }
Beth Thibodeau7b6c1782020-03-05 11:43:51 -0500689}