After pairing ASHA devices from "Hearing devices", the pair another dialog will bring user to the "Connected devices" pairing page. We should redirect user to "Hearing devices" pairing page if user is pairing their devices from A11y hearing devices page. Bug: 295713308 Test: atest HearingAidPairingDialogFragmentTest Test: manually connect an ASHA device and check the redirect page Change-Id: Ia18e53a85e2b21a17e7a843d8979917c8c468e09
73 lines
3.0 KiB
Java
73 lines
3.0 KiB
Java
/*
|
|
* Copyright (C) 2022 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.accessibility;
|
|
|
|
import android.util.Log;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.fragment.app.FragmentManager;
|
|
|
|
import com.android.settings.bluetooth.HearingAidPairingDialogFragment;
|
|
import com.android.settingslib.bluetooth.CachedBluetoothDevice;
|
|
import com.android.settingslib.bluetooth.CsipSetCoordinatorProfile;
|
|
import com.android.settingslib.bluetooth.HearingAidInfo;
|
|
|
|
/** Provides utility methods related hearing aids. */
|
|
public final class HearingAidUtils {
|
|
private static final String TAG = "HearingAidUtils";
|
|
|
|
private HearingAidUtils(){}
|
|
|
|
/**
|
|
* Launches pairing dialog when hearing aid device needs other side of hearing aid device to
|
|
* work.
|
|
*
|
|
* @param fragmentManager The {@link FragmentManager} used to show dialog fragment
|
|
* @param device The {@link CachedBluetoothDevice} need to be hearing aid device
|
|
* @param launchPage The page id where the dialog is launched
|
|
*/
|
|
public static void launchHearingAidPairingDialog(FragmentManager fragmentManager,
|
|
@NonNull CachedBluetoothDevice device, int launchPage) {
|
|
// No need to show the pair another ear dialog if the device supports and enables CSIP.
|
|
// CSIP will pair other devices in the same set automatically.
|
|
if (isCsipSupportedAndEnabled(device)) {
|
|
return;
|
|
}
|
|
if (device.isConnectedAshaHearingAidDevice()
|
|
&& device.getDeviceMode() == HearingAidInfo.DeviceMode.MODE_BINAURAL
|
|
&& device.getSubDevice() == null) {
|
|
launchHearingAidPairingDialogInternal(fragmentManager, device, launchPage);
|
|
}
|
|
}
|
|
|
|
private static void launchHearingAidPairingDialogInternal(FragmentManager fragmentManager,
|
|
@NonNull CachedBluetoothDevice device, int launchPage) {
|
|
if (device.getDeviceSide() == HearingAidInfo.DeviceSide.SIDE_INVALID) {
|
|
Log.w(TAG, "Can not launch hearing aid pairing dialog for invalid side");
|
|
return;
|
|
}
|
|
HearingAidPairingDialogFragment.newInstance(device.getAddress(), launchPage)
|
|
.show(fragmentManager, HearingAidPairingDialogFragment.TAG);
|
|
}
|
|
|
|
private static boolean isCsipSupportedAndEnabled(@NonNull CachedBluetoothDevice device) {
|
|
return device.getProfiles().stream().anyMatch(
|
|
profile -> (profile instanceof CsipSetCoordinatorProfile)
|
|
&& (profile.isEnabled(device.getDevice())));
|
|
}
|
|
}
|