Search in sources :

Example 21 with A2dpProfile

use of com.android.settingslib.bluetooth.A2dpProfile in project Resurrection_packages_apps_Settings by ResurrectionRemix.

the class MediaOutputIndicatorSlice method findActiveDeviceName.

private CharSequence findActiveDeviceName() {
    // Return Hearing Aid device name if it is active
    BluetoothDevice activeDevice = findActiveHearingAidDevice();
    if (activeDevice != null) {
        return activeDevice.getAliasName();
    }
    // Return A2DP device name if it is active
    final A2dpProfile a2dpProfile = mProfileManager.getA2dpProfile();
    if (a2dpProfile != null) {
        activeDevice = a2dpProfile.getActiveDevice();
        if (activeDevice != null) {
            return activeDevice.getAliasName();
        }
    }
    // No active device, return default summary
    return mContext.getText(R.string.media_output_default_summary);
}
Also used : A2dpProfile(com.android.settingslib.bluetooth.A2dpProfile) BluetoothDevice(android.bluetooth.BluetoothDevice)

Example 22 with A2dpProfile

use of com.android.settingslib.bluetooth.A2dpProfile in project Resurrection_packages_apps_Settings by ResurrectionRemix.

the class MediaOutputPreferenceController method findActiveDevice.

@Override
public BluetoothDevice findActiveDevice() {
    BluetoothDevice activeDevice = findActiveHearingAidDevice();
    final A2dpProfile a2dpProfile = mProfileManager.getA2dpProfile();
    if (activeDevice == null && a2dpProfile != null) {
        activeDevice = a2dpProfile.getActiveDevice();
    }
    return activeDevice;
}
Also used : A2dpProfile(com.android.settingslib.bluetooth.A2dpProfile) BluetoothDevice(android.bluetooth.BluetoothDevice)

Example 23 with A2dpProfile

use of com.android.settingslib.bluetooth.A2dpProfile in project Resurrection_packages_apps_Settings by ResurrectionRemix.

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(device.getMessageAccessPermission() == BluetoothDevice.ACCESS_ALLOWED);
    } else if (profile instanceof PbapServerProfile) {
        profilePref.setChecked(device.getPhonebookAccessPermission() == BluetoothDevice.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(androidx.preference.SwitchPreference)

Example 24 with A2dpProfile

use of com.android.settingslib.bluetooth.A2dpProfile in project Resurrection_packages_apps_Settings by ResurrectionRemix.

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.isProfileReady() && 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(androidx.preference.SwitchPreference)

Example 25 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(device.getMessageAccessPermission() == BluetoothDevice.ACCESS_ALLOWED);
    } else if (profile instanceof PbapServerProfile) {
        profilePref.setChecked(device.getPhonebookAccessPermission() == BluetoothDevice.ACCESS_ALLOWED);
    } else if (profile instanceof PanProfile) {
        profilePref.setChecked(profile.getConnectionStatus(device) == BluetoothProfile.STATE_CONNECTED);
    } else {
        profilePref.setChecked(profile.isEnabled(device));
    }
    if (profile instanceof A2dpProfile) {
        A2dpProfile a2dp = (A2dpProfile) profile;
        SwitchPreference highQualityPref = (SwitchPreference) mProfilesContainer.findPreference(HIGH_QUALITY_AUDIO_PREF_TAG);
        if (highQualityPref != null) {
            if (a2dp.isEnabled(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(androidx.preference.SwitchPreference)

Aggregations

A2dpProfile (com.android.settingslib.bluetooth.A2dpProfile)57 BluetoothDevice (android.bluetooth.BluetoothDevice)29 CachedBluetoothDevice (com.android.settingslib.bluetooth.CachedBluetoothDevice)26 SwitchPreference (android.support.v14.preference.SwitchPreference)25 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 SwitchPreference (androidx.preference.SwitchPreference)10 View (android.view.View)6 TextView (android.widget.TextView)6 LocalBluetoothProfile (com.android.settingslib.bluetooth.LocalBluetoothProfile)6