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

Commit aae0bc6b authored by Angela Wang's avatar Angela Wang
Browse files

Add dialog titles in device details page

Flag: EXEMPT bugfix
Bug: 419186071
Test: manually check the UI, attach screenshot in bug
Change-Id: Ia098f3398cc0a876cfba3d8bf047eebb5cec976d
parent 8cb24b2d
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;
    }