Search in sources :

Example 1 with A2dpProfile

use of com.android.settingslib.bluetooth.A2dpProfile in project android_packages_apps_Settings by LineageOS.

the class DeviceProfilesSettings method addPreferencesForProfiles.

private void addPreferencesForProfiles() {
    mProfileContainer.removeAllViews();
    for (LocalBluetoothProfile profile : mCachedDevice.getConnectableProfiles()) {
        CheckBox pref = createProfilePreference(profile);
        mProfileContainer.addView(pref);
        if (profile instanceof A2dpProfile) {
            BluetoothDevice device = mCachedDevice.getDevice();
            A2dpProfile a2dpProfile = (A2dpProfile) profile;
            if (a2dpProfile.supportsHighQualityAudio(device)) {
                CheckBox highQualityPref = new CheckBox(getActivity());
                highQualityPref.setTag(HIGH_QUALITY_AUDIO_PREF_TAG);
                highQualityPref.setOnClickListener(v -> {
                    a2dpProfile.setHighQualityAudioEnabled(device, highQualityPref.isChecked());
                });
                highQualityPref.setVisibility(View.GONE);
                mProfileContainer.addView(highQualityPref);
            }
            refreshProfilePreference(pref, profile);
        }
    }
    final int pbapPermission = mCachedDevice.getPhonebookPermissionChoice();
    // Only provide PBAP cabability if the client device has requested PBAP.
    if (pbapPermission != CachedBluetoothDevice.ACCESS_UNKNOWN) {
        final PbapServerProfile psp = mManager.getProfileManager().getPbapProfile();
        CheckBox pbapPref = createProfilePreference(psp);
        mProfileContainer.addView(pbapPref);
    }
    final MapProfile mapProfile = mManager.getProfileManager().getMapProfile();
    final int mapPermission = mCachedDevice.getMessagePermissionChoice();
    if (mapPermission != CachedBluetoothDevice.ACCESS_UNKNOWN) {
        CheckBox mapPreference = createProfilePreference(mapProfile);
        mProfileContainer.addView(mapPreference);
    }
    showOrHideProfileGroup();
}
Also used : LocalBluetoothProfile(com.android.settingslib.bluetooth.LocalBluetoothProfile) PbapServerProfile(com.android.settingslib.bluetooth.PbapServerProfile) MapProfile(com.android.settingslib.bluetooth.MapProfile) A2dpProfile(com.android.settingslib.bluetooth.A2dpProfile) BluetoothDevice(android.bluetooth.BluetoothDevice) CachedBluetoothDevice(com.android.settingslib.bluetooth.CachedBluetoothDevice) CheckBox(android.widget.CheckBox)

Example 2 with A2dpProfile

use of com.android.settingslib.bluetooth.A2dpProfile in project android_packages_apps_Settings by LineageOS.

the class BluetoothDetailsProfilesControllerTest method highQualityAudio_mediaAudioDisabledAndReEnabled.

@Test
public void highQualityAudio_mediaAudioDisabledAndReEnabled() {
    setupDevice(makeDefaultDeviceConfig());
    A2dpProfile audioProfile = addMockA2dpProfile(true, true, true);
    showScreen(mController);
    assertThat(mProfiles.getPreferenceCount()).isEqualTo(2);
    // Disabling media audio should cause the high quality audio switch to disappear, but not
    // the regular audio one.
    SwitchPreference audioPref = (SwitchPreference) mScreen.findPreference(audioProfile.toString());
    audioPref.performClick();
    verify(audioProfile).setPreferred(mDevice, false);
    when(audioProfile.isPreferred(mDevice)).thenReturn(false);
    mController.onDeviceAttributesChanged();
    assertThat(audioPref.isVisible()).isTrue();
    SwitchPreference highQualityAudioPref = getHighQualityAudioPref();
    assertThat(highQualityAudioPref.isVisible()).isFalse();
    // And re-enabling media audio should make high quality switch to reappear.
    audioPref.performClick();
    verify(audioProfile).setPreferred(mDevice, true);
    when(audioProfile.isPreferred(mDevice)).thenReturn(true);
    mController.onDeviceAttributesChanged();
    highQualityAudioPref = getHighQualityAudioPref();
    assertThat(highQualityAudioPref.isVisible()).isTrue();
}
Also used : A2dpProfile(com.android.settingslib.bluetooth.A2dpProfile) SwitchPreference(android.support.v14.preference.SwitchPreference) Test(org.junit.Test)

Example 3 with A2dpProfile

use of com.android.settingslib.bluetooth.A2dpProfile in project android_packages_apps_Settings by LineageOS.

the class BluetoothDetailsProfilesControllerTest method highQualityAudio_mediaAudioStartsDisabled.

@Test
public void highQualityAudio_mediaAudioStartsDisabled() {
    setupDevice(makeDefaultDeviceConfig());
    A2dpProfile audioProfile = addMockA2dpProfile(false, true, true);
    showScreen(mController);
    SwitchPreference audioPref = (SwitchPreference) mScreen.findPreference(audioProfile.toString());
    SwitchPreference highQualityAudioPref = getHighQualityAudioPref();
    assertThat(audioPref).isNotNull();
    assertThat(audioPref.isChecked()).isFalse();
    assertThat(highQualityAudioPref).isNotNull();
    assertThat(highQualityAudioPref.isVisible()).isFalse();
}
Also used : A2dpProfile(com.android.settingslib.bluetooth.A2dpProfile) SwitchPreference(android.support.v14.preference.SwitchPreference) Test(org.junit.Test)

Example 4 with A2dpProfile

use of com.android.settingslib.bluetooth.A2dpProfile in project android_packages_apps_Settings by omnirom.

the class BluetoothDetailsProfilesController method refreshProfilePreference.

/**
 * Refreshes the state for an existing SwitchPreference for a profile.
 */
private void refreshProfilePreference(SwitchPreference profilePref, LocalBluetoothProfile profile) {
    BluetoothDevice device = mCachedDevice.getDevice();
    profilePref.setEnabled(!mCachedDevice.isBusy());
    if (profile instanceof MapProfile) {
        profilePref.setChecked(mCachedDevice.getMessagePermissionChoice() == CachedBluetoothDevice.ACCESS_ALLOWED);
    } else if (profile instanceof PbapServerProfile) {
        profilePref.setChecked(mCachedDevice.getPhonebookPermissionChoice() == CachedBluetoothDevice.ACCESS_ALLOWED);
    } else if (profile instanceof PanProfile) {
        profilePref.setChecked(profile.getConnectionStatus(device) == BluetoothProfile.STATE_CONNECTED);
    } else {
        profilePref.setChecked(profile.isPreferred(device));
    }
    if (profile instanceof A2dpProfile) {
        A2dpProfile a2dp = (A2dpProfile) profile;
        SwitchPreference highQualityPref = (SwitchPreference) mProfilesContainer.findPreference(HIGH_QUALITY_AUDIO_PREF_TAG);
        if (highQualityPref != null) {
            if (a2dp.isPreferred(device) && a2dp.supportsHighQualityAudio(device)) {
                highQualityPref.setVisible(true);
                highQualityPref.setTitle(a2dp.getHighQualityAudioOptionLabel(device));
                highQualityPref.setChecked(a2dp.isHighQualityAudioEnabled(device));
                highQualityPref.setEnabled(!mCachedDevice.isBusy());
            } else {
                highQualityPref.setVisible(false);
            }
        }
    }
}
Also used : MapProfile(com.android.settingslib.bluetooth.MapProfile) PbapServerProfile(com.android.settingslib.bluetooth.PbapServerProfile) A2dpProfile(com.android.settingslib.bluetooth.A2dpProfile) BluetoothDevice(android.bluetooth.BluetoothDevice) CachedBluetoothDevice(com.android.settingslib.bluetooth.CachedBluetoothDevice) PanProfile(com.android.settingslib.bluetooth.PanProfile) SwitchPreference(android.support.v14.preference.SwitchPreference)

Example 5 with A2dpProfile

use of com.android.settingslib.bluetooth.A2dpProfile in project android_packages_apps_Settings by omnirom.

the class BluetoothDetailsProfilesController method maybeAddHighQualityAudioPref.

/**
 * This is a helper method to be called after adding a Preference for a profile. If that
 * profile happened to be A2dp and the device supports high quality audio, it will add a
 * separate preference for controlling whether to actually use high quality audio.
 *
 * @param profile the profile just added
 */
private void maybeAddHighQualityAudioPref(LocalBluetoothProfile profile) {
    if (!(profile instanceof A2dpProfile)) {
        return;
    }
    BluetoothDevice device = mCachedDevice.getDevice();
    A2dpProfile a2dp = (A2dpProfile) profile;
    if (a2dp.supportsHighQualityAudio(device)) {
        SwitchPreference highQualityAudioPref = new SwitchPreference(mProfilesContainer.getContext());
        highQualityAudioPref.setKey(HIGH_QUALITY_AUDIO_PREF_TAG);
        highQualityAudioPref.setVisible(false);
        highQualityAudioPref.setOnPreferenceClickListener(clickedPref -> {
            boolean enable = ((SwitchPreference) clickedPref).isChecked();
            a2dp.setHighQualityAudioEnabled(mCachedDevice.getDevice(), enable);
            return true;
        });
        mProfilesContainer.addPreference(highQualityAudioPref);
    }
}
Also used : A2dpProfile(com.android.settingslib.bluetooth.A2dpProfile) BluetoothDevice(android.bluetooth.BluetoothDevice) CachedBluetoothDevice(com.android.settingslib.bluetooth.CachedBluetoothDevice) SwitchPreference(android.support.v14.preference.SwitchPreference)

Aggregations

A2dpProfile (com.android.settingslib.bluetooth.A2dpProfile)56 SwitchPreference (android.support.v14.preference.SwitchPreference)30 BluetoothDevice (android.bluetooth.BluetoothDevice)28 CachedBluetoothDevice (com.android.settingslib.bluetooth.CachedBluetoothDevice)26 Test (org.junit.Test)21 MapProfile (com.android.settingslib.bluetooth.MapProfile)19 PbapServerProfile (com.android.settingslib.bluetooth.PbapServerProfile)19 PanProfile (com.android.settingslib.bluetooth.PanProfile)13 CheckBox (android.widget.CheckBox)12 View (android.view.View)6 TextView (android.widget.TextView)6 LocalBluetoothProfile (com.android.settingslib.bluetooth.LocalBluetoothProfile)6 SwitchPreference (androidx.preference.SwitchPreference)5