Volume settings refinements as per designer feedback.

Reduced titles, changed dialog icon, reduced padding.
This commit is contained in:
Amith Yamasani
2010-02-11 05:51:22 -08:00
parent 07525028d2
commit dcea680f2a
3 changed files with 11 additions and 9 deletions

View File

@@ -42,7 +42,7 @@
<SeekBar android:id="@*android:id/seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="6dip"
android:paddingTop="2dip"
android:paddingLeft="20dip"
android:paddingRight="20dip" />
@@ -57,8 +57,8 @@
<SeekBar android:id="@+id/media_volume_seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="6dip"
android:paddingLeft="20dip"
android:paddingTop="2dip"
android:paddingLeft="20dip"
android:paddingRight="20dip" />
<!-- Used for the alarm volume -->
@@ -72,7 +72,7 @@
<SeekBar android:id="@+id/alarm_volume_seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="6dip"
android:paddingTop="2dip"
android:paddingLeft="20dip"
android:paddingRight="20dip" />
@@ -97,7 +97,7 @@
<SeekBar android:id="@+id/notification_volume_seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="6dip"
android:paddingTop="2dip"
android:paddingLeft="20dip"
android:paddingRight="20dip" />

View File

@@ -913,20 +913,20 @@
<!-- Sound settings screen, notification light repeat pulsing summary -->
<string name="notification_pulse_summary">Pulse trackball light repeatedly for new notifications</string>
<!-- Sound settings screen, the title of the volume bar to adjust the incoming call volume -->
<string name="incoming_call_volume_title">Incoming call volume</string>
<string name="incoming_call_volume_title">Ringtone</string>
<!-- Sound settings screen, the title of the volume bar to adjust the notification volume -->
<string name="notification_volume_title">Notification volume</string>
<string name="notification_volume_title">Notification</string>
<!-- Sound settings screen, the caption of the checkbox for having the notification volume be
the same as the incoming call volume. -->
<string name="checkbox_notification_same_as_incoming_call">Use incoming call volume for notifications</string>
<!-- Sound settings screen, setting option title-->
<string name="notification_sound_dialog_title">Select notification ringtone</string>
<!-- Sound settings screen, setting option name -->
<string name="media_volume_title">Media volume</string>
<string name="media_volume_title">Media</string>
<!-- Sound settings screen, setting option summary text -->
<string name="media_volume_summary">Set volume for music and videos</string>
<!-- Sound settings screen, alarm volume slider title -->
<string name="alarm_volume_title">Alarm volume</string>
<string name="alarm_volume_title">Alarm</string>
<!-- Sound settings screen, dock settings summary-->
<string name="dock_settings_summary">Audio settings for the attached dock</string>
<!-- Sound settings screen, setting check box label -->

View File

@@ -60,6 +60,8 @@ public class RingerVolumePreference extends VolumePreference implements
setStreamType(AudioManager.STREAM_RING);
setDialogLayoutResource(R.layout.preference_dialog_ringervolume);
setDialogIcon(R.drawable.ic_settings_sound);
mSeekBarVolumizer = new SeekBarVolumizer[SEEKBAR_ID.length];
}