* changes: Redirect to output switcher panel to the new dialog Update rule of launching media output dialog Update OutputSwitcher from MediaOutputSlice to MediaOutputDialog in Settings Add PairNewBluetoothReceiver to launch Bluetooth pairing page
148 lines
5.4 KiB
Java
148 lines
5.4 KiB
Java
/*
|
|
* Copyright (C) 2018 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.sound;
|
|
|
|
import android.bluetooth.BluetoothDevice;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.media.AudioManager;
|
|
import android.media.session.MediaController;
|
|
import android.media.session.MediaSessionManager;
|
|
import android.text.TextUtils;
|
|
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceScreen;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.media.MediaOutputUtils;
|
|
import com.android.settingslib.Utils;
|
|
import com.android.settingslib.bluetooth.A2dpProfile;
|
|
import com.android.settingslib.bluetooth.HearingAidProfile;
|
|
import com.android.settingslib.media.MediaOutputSliceConstants;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* This class allows launching MediaOutputSlice to switch output device.
|
|
* Preference would hide only when
|
|
* - Bluetooth = OFF
|
|
* - Bluetooth = ON and Connected Devices = 0 and Previously Connected = 0
|
|
* - Media stream captured by remote device
|
|
* - During a call.
|
|
*/
|
|
public class MediaOutputPreferenceController extends AudioSwitchPreferenceController {
|
|
|
|
private MediaController mMediaController;
|
|
|
|
public MediaOutputPreferenceController(Context context, String key) {
|
|
super(context, key);
|
|
mMediaController = MediaOutputUtils.getActiveLocalMediaController(context.getSystemService(
|
|
MediaSessionManager.class));
|
|
}
|
|
|
|
@Override
|
|
public void displayPreference(PreferenceScreen screen) {
|
|
super.displayPreference(screen);
|
|
|
|
if (!Utils.isAudioModeOngoingCall(mContext) && mMediaController != null) {
|
|
mPreference.setVisible(true);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference) {
|
|
if (preference == null) {
|
|
// In case UI is not ready.
|
|
return;
|
|
}
|
|
|
|
if (mMediaController == null) {
|
|
// No active local playback
|
|
return;
|
|
}
|
|
|
|
if (Utils.isAudioModeOngoingCall(mContext)) {
|
|
// Ongoing call status, switch entry for media will be disabled.
|
|
mPreference.setVisible(false);
|
|
preference.setSummary(
|
|
mContext.getText(R.string.media_out_summary_ongoing_call_state));
|
|
return;
|
|
}
|
|
|
|
BluetoothDevice activeDevice = null;
|
|
// Show preference if there is connected or previously connected device
|
|
// Find active device and set its name as the preference's summary
|
|
List<BluetoothDevice> connectedA2dpDevices = getConnectedA2dpDevices();
|
|
List<BluetoothDevice> connectedHADevices = getConnectedHearingAidDevices();
|
|
if (mAudioManager.getMode() == AudioManager.MODE_NORMAL
|
|
&& ((connectedA2dpDevices != null && !connectedA2dpDevices.isEmpty())
|
|
|| (connectedHADevices != null && !connectedHADevices.isEmpty()))) {
|
|
activeDevice = findActiveDevice();
|
|
}
|
|
mPreference.setTitle(mContext.getString(R.string.media_output_label_title,
|
|
com.android.settings.Utils.getApplicationLabel(mContext,
|
|
mMediaController.getPackageName())));
|
|
mPreference.setSummary((activeDevice == null) ?
|
|
mContext.getText(R.string.media_output_default_summary) :
|
|
activeDevice.getAlias());
|
|
}
|
|
|
|
@Override
|
|
public BluetoothDevice findActiveDevice() {
|
|
BluetoothDevice activeDevice = findActiveHearingAidDevice();
|
|
final A2dpProfile a2dpProfile = mProfileManager.getA2dpProfile();
|
|
|
|
if (activeDevice == null && a2dpProfile != null) {
|
|
activeDevice = a2dpProfile.getActiveDevice();
|
|
}
|
|
return activeDevice;
|
|
}
|
|
|
|
/**
|
|
* Find active hearing aid device
|
|
*/
|
|
@Override
|
|
protected BluetoothDevice findActiveHearingAidDevice() {
|
|
final HearingAidProfile hearingAidProfile = mProfileManager.getHearingAidProfile();
|
|
|
|
if (hearingAidProfile != null) {
|
|
List<BluetoothDevice> activeDevices = hearingAidProfile.getActiveDevices();
|
|
for (BluetoothDevice btDevice : activeDevices) {
|
|
if (btDevice != null) {
|
|
return btDevice;
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public boolean handlePreferenceTreeClick(Preference preference) {
|
|
if (TextUtils.equals(preference.getKey(), getPreferenceKey())) {
|
|
mContext.sendBroadcast(new Intent()
|
|
.setAction(MediaOutputSliceConstants.ACTION_LAUNCH_MEDIA_OUTPUT_DIALOG)
|
|
.setPackage(MediaOutputSliceConstants.SYSTEMUI_PACKAGE_NAME)
|
|
.putExtra(MediaOutputSliceConstants.EXTRA_PACKAGE_NAME,
|
|
mMediaController.getPackageName())
|
|
.putExtra(MediaOutputSliceConstants.KEY_MEDIA_SESSION_TOKEN,
|
|
mMediaController.getSessionToken()));
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|