Test: atest AudioSharingFeatureProviderImplTest Bug: b/397137711 Flag: EXEMPT no-op Change-Id: I124d6ded50faf9fa0ca06bd5b34d72e9399f3e59
294 lines
13 KiB
Java
294 lines
13 KiB
Java
/*
|
|
* Copyright (C) 2023 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.connecteddevice.audiosharing;
|
|
|
|
import static com.android.settings.connecteddevice.audiosharing.AudioSharingDashboardFragment.SHARE_THEN_PAIR_REQUEST_CODE;
|
|
import static com.android.settings.connecteddevice.audiosharing.audiostreams.AudioStreamsQrCodeFragment.getQrCodeDrawable;
|
|
import static com.android.settingslib.bluetooth.LocalBluetoothLeBroadcast.EXTRA_PAIR_AND_JOIN_SHARING;
|
|
|
|
import android.app.Dialog;
|
|
import android.app.settings.SettingsEnums;
|
|
import android.bluetooth.BluetoothLeBroadcastMetadata;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.os.Bundle;
|
|
import android.util.Log;
|
|
import android.util.Pair;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.appcompat.app.AlertDialog;
|
|
import androidx.fragment.app.Fragment;
|
|
import androidx.fragment.app.FragmentManager;
|
|
import androidx.lifecycle.Lifecycle;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.bluetooth.BluetoothPairingDetail;
|
|
import com.android.settings.connecteddevice.audiosharing.audiostreams.AudioStreamsQrCodeFragment;
|
|
import com.android.settings.core.SubSettingLauncher;
|
|
import com.android.settings.overlay.FeatureFactory;
|
|
import com.android.settings.core.instrumentation.InstrumentedDialogFragment;
|
|
import com.android.settingslib.bluetooth.BluetoothLeBroadcastMetadataExt;
|
|
import com.android.settingslib.bluetooth.BluetoothUtils;
|
|
|
|
import com.google.common.collect.Iterables;
|
|
|
|
import java.nio.charset.StandardCharsets;
|
|
import java.util.List;
|
|
|
|
public class AudioSharingDialogFragment extends InstrumentedDialogFragment {
|
|
private static final String TAG = "AudioSharingDialog";
|
|
|
|
private static final String BUNDLE_KEY_DEVICE_ITEMS = "bundle_key_device_items";
|
|
private static final String BUNDLE_KEY_BROADCAST_METADATA = "bundle_key_broadcast_metadata";
|
|
|
|
// The host creates an instance of this dialog fragment must implement this interface to receive
|
|
// event callbacks.
|
|
public interface DialogEventListener {
|
|
/** Called when users click the positive button in the dialog. */
|
|
default void onPositiveClick() {}
|
|
|
|
/**
|
|
* Called when users click the device item for sharing in the dialog.
|
|
*
|
|
* @param item The device item clicked.
|
|
*/
|
|
default void onItemClick(@NonNull AudioSharingDeviceItem item) {}
|
|
|
|
/** Called when users click the cancel button in the dialog. */
|
|
default void onCancelClick() {}
|
|
}
|
|
|
|
@Nullable private static DialogEventListener sListener;
|
|
private static Pair<Integer, Object>[] sEventData = new Pair[0];
|
|
@Nullable private static Fragment sHost;
|
|
|
|
AudioSharingFeatureProvider audioSharingFeatureProvider =
|
|
FeatureFactory.getFeatureFactory().getAudioSharingFeatureProvider();
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return SettingsEnums.DIALOG_AUDIO_SHARING_ADD_DEVICE;
|
|
}
|
|
|
|
/**
|
|
* Display the {@link AudioSharingDialogFragment} dialog.
|
|
*
|
|
* @param host The Fragment this dialog will be hosted.
|
|
* @param deviceItems The connected device items eligible for audio sharing.
|
|
* @param metadata The audio sharing metadata, nullable.
|
|
* @param listener The callback to handle the user action on this dialog.
|
|
* @param eventData The eventData to log with for dialog onClick events.
|
|
*/
|
|
public static void show(
|
|
@Nullable Fragment host,
|
|
@NonNull List<AudioSharingDeviceItem> deviceItems,
|
|
@Nullable BluetoothLeBroadcastMetadata metadata,
|
|
@NonNull DialogEventListener listener,
|
|
@NonNull Pair<Integer, Object>[] eventData) {
|
|
if (host == null) {
|
|
Log.d(TAG, "Fail to show dialog, host is null");
|
|
return;
|
|
}
|
|
if (BluetoothUtils.isAudioSharingUIAvailable(host.getContext())) {
|
|
final FragmentManager manager;
|
|
try {
|
|
manager = host.getChildFragmentManager();
|
|
} catch (IllegalStateException e) {
|
|
Log.d(TAG, "Fail to show dialog: " + e.getMessage());
|
|
return;
|
|
}
|
|
Lifecycle.State currentState = host.getLifecycle().getCurrentState();
|
|
if (!currentState.isAtLeast(Lifecycle.State.STARTED)) {
|
|
Log.d(TAG, "Fail to show dialog with state: " + currentState);
|
|
return;
|
|
}
|
|
sHost = host;
|
|
sListener = listener;
|
|
sEventData = eventData;
|
|
AlertDialog dialog = AudioSharingDialogHelper.getDialogIfShowing(manager, TAG);
|
|
if (dialog != null) {
|
|
Log.d(TAG, "Dialog is showing, return.");
|
|
return;
|
|
}
|
|
Log.d(TAG, "Show up the dialog.");
|
|
final Bundle bundle = new Bundle();
|
|
bundle.putParcelableList(BUNDLE_KEY_DEVICE_ITEMS, deviceItems);
|
|
if (metadata != null) {
|
|
bundle.putParcelable(BUNDLE_KEY_BROADCAST_METADATA, metadata);
|
|
}
|
|
AudioSharingDialogFragment dialogFrag = new AudioSharingDialogFragment();
|
|
dialogFrag.setArguments(bundle);
|
|
dialogFrag.show(manager, TAG);
|
|
}
|
|
}
|
|
|
|
/** Return the tag of {@link AudioSharingDialogFragment} dialog. */
|
|
public static @NonNull String tag() {
|
|
return TAG;
|
|
}
|
|
|
|
/** Test only: get the event data passed to the dialog. */
|
|
@VisibleForTesting
|
|
@NonNull
|
|
Pair<Integer, Object>[] getEventData() {
|
|
return sEventData;
|
|
}
|
|
|
|
@Override
|
|
@NonNull
|
|
public Dialog onCreateDialog(Bundle savedInstanceState) {
|
|
Bundle arguments = requireArguments();
|
|
List<AudioSharingDeviceItem> deviceItems =
|
|
arguments.getParcelable(BUNDLE_KEY_DEVICE_ITEMS, List.class);
|
|
AudioSharingDialogFactory.DialogBuilder builder =
|
|
AudioSharingDialogFactory.newBuilder(getActivity())
|
|
.setTitleIcon(com.android.settingslib.R.drawable.ic_bt_le_audio_sharing)
|
|
.setIsCustomBodyEnabled(true);
|
|
if (deviceItems == null) {
|
|
Log.d(TAG, "Create dialog error: null deviceItems");
|
|
return builder.build();
|
|
}
|
|
BluetoothLeBroadcastMetadata metadata = arguments.getParcelable(
|
|
BUNDLE_KEY_BROADCAST_METADATA, BluetoothLeBroadcastMetadata.class);
|
|
Drawable qrCodeDrawable = null;
|
|
if (deviceItems.isEmpty()) {
|
|
builder.setTitle(R.string.audio_sharing_share_dialog_title)
|
|
.setCustomPositiveButton(
|
|
R.string.audio_sharing_pair_button_label,
|
|
v -> {
|
|
if (sListener != null) {
|
|
sListener.onPositiveClick();
|
|
}
|
|
logDialogPositiveBtnClick();
|
|
dismiss();
|
|
Bundle args = new Bundle();
|
|
args.putBoolean(EXTRA_PAIR_AND_JOIN_SHARING, true);
|
|
SubSettingLauncher launcher =
|
|
new SubSettingLauncher(getContext())
|
|
.setDestination(
|
|
BluetoothPairingDetail.class.getName())
|
|
.setSourceMetricsCategory(getMetricsCategory())
|
|
.setArguments(args);
|
|
if (sHost != null) {
|
|
launcher.setResultListener(sHost, SHARE_THEN_PAIR_REQUEST_CODE);
|
|
}
|
|
launcher.launch();
|
|
});
|
|
qrCodeDrawable = metadata == null ? null : getQrCodeDrawable(metadata,
|
|
getContext()).orElse(null);
|
|
if (qrCodeDrawable != null) {
|
|
String broadcastName =
|
|
metadata.getBroadcastName() == null ? "" : metadata.getBroadcastName();
|
|
boolean hasPassword = metadata.getBroadcastCode() != null
|
|
&& metadata.getBroadcastCode().length > 0;
|
|
String message = hasPassword ? getString(
|
|
R.string.audio_sharing_dialog_qr_code_content, broadcastName,
|
|
new String(metadata.getBroadcastCode(), StandardCharsets.UTF_8)) :
|
|
getString(R.string.audio_sharing_dialog_qr_code_content_no_password,
|
|
broadcastName);
|
|
builder.setCustomMessage(message)
|
|
.setCustomMessage2(R.string.audio_sharing_dialog_pair_new_device_content)
|
|
.setCustomNegativeButton(R.string.audio_streams_dialog_close,
|
|
v -> onCancelClick());
|
|
} else {
|
|
builder.setCustomImage(R.drawable.audio_sharing_guidance)
|
|
.setCustomMessage(R.string.audio_sharing_dialog_connect_device_content)
|
|
.setCustomNegativeButton(
|
|
R.string.audio_sharing_qrcode_button_label,
|
|
v -> {
|
|
onCancelClick();
|
|
new SubSettingLauncher(getContext())
|
|
.setTitleRes(R.string.audio_streams_qr_code_page_title)
|
|
.setDestination(
|
|
AudioStreamsQrCodeFragment.class.getName())
|
|
.setSourceMetricsCategory(getMetricsCategory())
|
|
.launch();
|
|
});
|
|
}
|
|
} else if (deviceItems.size() == 1) {
|
|
AudioSharingDeviceItem deviceItem = Iterables.getOnlyElement(deviceItems);
|
|
builder.setTitle(
|
|
getString(
|
|
R.string.audio_sharing_share_with_dialog_title,
|
|
deviceItem.getName()))
|
|
.setCustomMessage(R.string.audio_sharing_dialog_share_content)
|
|
.setCustomPositiveButton(
|
|
R.string.audio_sharing_share_button_label,
|
|
v -> {
|
|
if (sListener != null) {
|
|
sListener.onItemClick(deviceItem);
|
|
}
|
|
logDialogPositiveBtnClick();
|
|
dismiss();
|
|
})
|
|
.setCustomNegativeButton(
|
|
R.string.audio_sharing_no_thanks_button_label, v -> onCancelClick());
|
|
} else {
|
|
builder.setTitle(R.string.audio_sharing_share_with_more_dialog_title)
|
|
.setCustomMessage(R.string.audio_sharing_dialog_share_more_content)
|
|
.setCustomDeviceActions(
|
|
new AudioSharingDeviceAdapter(
|
|
getContext(),
|
|
deviceItems,
|
|
(AudioSharingDeviceItem item) -> {
|
|
if (sListener != null) {
|
|
sListener.onItemClick(item);
|
|
}
|
|
logDialogPositiveBtnClick();
|
|
dismiss();
|
|
},
|
|
AudioSharingDeviceAdapter.ActionType.SHARE))
|
|
.setCustomNegativeButton(
|
|
com.android.settings.R.string.cancel, v -> onCancelClick());
|
|
}
|
|
Dialog dialog = builder.build();
|
|
dialog.show();
|
|
if (deviceItems.isEmpty() && qrCodeDrawable != null) {
|
|
audioSharingFeatureProvider.setQrCode(
|
|
this,
|
|
dialog.getWindow().getDecorView(),
|
|
R.id.description_image,
|
|
qrCodeDrawable,
|
|
BluetoothLeBroadcastMetadataExt.INSTANCE.toQrCodeString(metadata));
|
|
}
|
|
return dialog;
|
|
}
|
|
|
|
private void onCancelClick() {
|
|
if (sListener != null) {
|
|
sListener.onCancelClick();
|
|
}
|
|
logDialogNegativeBtnClick();
|
|
dismiss();
|
|
}
|
|
|
|
private void logDialogPositiveBtnClick() {
|
|
mMetricsFeatureProvider.action(
|
|
getContext(),
|
|
SettingsEnums.ACTION_AUDIO_SHARING_DIALOG_POSITIVE_BTN_CLICKED,
|
|
sEventData);
|
|
}
|
|
|
|
private void logDialogNegativeBtnClick() {
|
|
mMetricsFeatureProvider.action(
|
|
getContext(),
|
|
SettingsEnums.ACTION_AUDIO_SHARING_DIALOG_NEGATIVE_BTN_CLICKED,
|
|
sEventData);
|
|
}
|
|
}
|