summaryrefslogtreecommitdiffstats
path: root/res/layout/preference_dialog_ringervolume.xml
diff options
context:
space:
mode:
authorRomain Guy <romainguy@android.com>2010-01-08 15:07:10 -0800
committerRomain Guy <romainguy@android.com>2010-01-08 15:11:59 -0800
commit33787156266b657996be0bf79f969d08ee70c9ba (patch)
treeb04f9f89ddcd63a9f034f62087ebb33422eaec60 /res/layout/preference_dialog_ringervolume.xml
parent9bd889d7fbad483471e0a4d26f05d2e68b67a2e4 (diff)
downloadpackages_apps_Settings-33787156266b657996be0bf79f969d08ee70c9ba.zip
packages_apps_Settings-33787156266b657996be0bf79f969d08ee70c9ba.tar.gz
packages_apps_Settings-33787156266b657996be0bf79f969d08ee70c9ba.tar.bz2
Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
Diffstat (limited to 'res/layout/preference_dialog_ringervolume.xml')
-rw-r--r--res/layout/preference_dialog_ringervolume.xml18
1 files changed, 9 insertions, 9 deletions
diff --git a/res/layout/preference_dialog_ringervolume.xml b/res/layout/preference_dialog_ringervolume.xml
index 5905f45..a23e313 100644
--- a/res/layout/preference_dialog_ringervolume.xml
+++ b/res/layout/preference_dialog_ringervolume.xml
@@ -15,12 +15,12 @@
-->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center_horizontal"
android:paddingBottom="20dip">
@@ -31,7 +31,7 @@
android:paddingTop="20dip" />
<TextView
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/incoming_call_volume_title"
android:paddingTop="20dip"
@@ -40,14 +40,14 @@
<!-- Used for the ring volume. This is what the superclass VolumePreference uses. -->
<SeekBar android:id="@*android:id/seekbar"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="6dip"
android:paddingLeft="20dip"
android:paddingRight="20dip" />
<CheckBox android:id="@+id/same_notification_volume"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/checkbox_notification_same_as_incoming_call"
android:textAppearance="?android:attr/textAppearanceSmall"
@@ -56,7 +56,7 @@
android:layout_marginRight="20dip" />
<TextView android:id="@+id/notification_volume_title"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/notification_volume_title"
android:paddingTop="6dip"
@@ -65,7 +65,7 @@
<!-- Used for the notification volume -->
<SeekBar android:id="@+id/notification_volume_seekbar"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="6dip"
android:paddingLeft="20dip"