Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 34cb2269 authored by Angela Wang's avatar Angela Wang Committed by Android (Google) Code Review
Browse files

Merge "Add dialog titles in device details page" into main

parents e74fff46 aae0bc6b
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -152,6 +152,8 @@ public class BluetoothDetailsAudioDeviceTypeController extends BluetoothDetailsC
        mAudioDeviceTypePreference.setKey(KEY_BT_AUDIO_DEVICE_TYPE);
        mAudioDeviceTypePreference.setTitle(
                mContext.getString(R.string.bluetooth_details_audio_device_types_title));
        mAudioDeviceTypePreference.setDialogTitle(
                mContext.getString(R.string.bluetooth_details_audio_device_types_title));
        mAudioDeviceTypePreference.setEntries(new CharSequence[]{
                mContext.getString(R.string.bluetooth_details_audio_device_type_unknown),
                mContext.getString(R.string.bluetooth_details_audio_device_type_speaker),
+2 −1
Original line number Diff line number Diff line
@@ -268,7 +268,8 @@ public class BluetoothDetailsHearingAidsPresetsController extends
        ListPreference preference = new PresetListPreference(context);
        preference.setKey(KEY_HEARING_AIDS_PRESETS);
        preference.setOrder(ORDER_HEARING_AIDS_PRESETS);
        preference.setTitle(context.getString(R.string.bluetooth_hearing_aids_presets));
        preference.setTitle(R.string.bluetooth_hearing_aids_presets);
        preference.setDialogTitle(R.string.bluetooth_hearing_aids_presets);
        preference.setOnPreferenceChangeListener(this);
        return preference;
    }