Add mono audio to SoundSettings

Bug: 15283594
Bug: 22700363
Change-Id: Ic4571dee4567a94265bbcf11d08108b19687b284
This commit is contained in:
Andy Hung
2015-12-21 12:25:49 -08:00
parent 0c4052ceaa
commit 0863ea40cd
3 changed files with 54 additions and 0 deletions

View File

@@ -5597,6 +5597,15 @@
<!-- Sound: Title for the option managing whether or not to vibrate when ringing. [CHAR LIMIT=30] -->
<string name="vibrate_when_ringing_title">Also vibrate for calls</string>
<!-- Sound: Title for the option managing mono audio output. [CHAR LIMIT=30] -->
<string name="master_mono_title">Mono playback</string>
<!-- Sound: Mono audio: Summary for mono audio output when enabled. [CHAR LIMIT=40] -->
<string name="master_mono_on">Always play back audio in mono</string>
<!-- Sound: Mono audio: Summary for mono audio output when disabled. [CHAR LIMIT=40] -->
<string name="master_mono_off">Always play back audio in mono</string>
<!-- Sound: Title for the other sounds option and associated settings page. [CHAR LIMIT=30] -->
<string name="other_sound_settings">Other sounds</string>

View File

@@ -50,6 +50,14 @@
android:title="@string/vibrate_when_ringing_title"
android:persistent="false" />
<!-- Master mono -->
<SwitchPreference
android:key="master_mono"
android:title="@string/master_mono_title"
android:persistent="false"
android:summaryOn="@string/master_mono_on"
android:summaryOff="@string/master_mono_off" />
<!-- Interruptions -->
<PreferenceScreen
android:key="zen_mode"