diff options
author | Romain Guy <romainguy@android.com> | 2010-01-08 15:07:10 -0800 |
---|---|---|
committer | Romain Guy <romainguy@android.com> | 2010-01-08 15:11:59 -0800 |
commit | 33787156266b657996be0bf79f969d08ee70c9ba (patch) | |
tree | b04f9f89ddcd63a9f034f62087ebb33422eaec60 /res/layout/bluetooth_pin_entry.xml | |
parent | 9bd889d7fbad483471e0a4d26f05d2e68b67a2e4 (diff) | |
download | packages_apps_Settings-33787156266b657996be0bf79f969d08ee70c9ba.tar.gz packages_apps_Settings-33787156266b657996be0bf79f969d08ee70c9ba.tar.bz2 packages_apps_Settings-33787156266b657996be0bf79f969d08ee70c9ba.zip |
Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
Diffstat (limited to 'res/layout/bluetooth_pin_entry.xml')
-rw-r--r-- | res/layout/bluetooth_pin_entry.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/res/layout/bluetooth_pin_entry.xml b/res/layout/bluetooth_pin_entry.xml index bcb6f1664..16b75fc1c 100644 --- a/res/layout/bluetooth_pin_entry.xml +++ b/res/layout/bluetooth_pin_entry.xml @@ -19,18 +19,18 @@ <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_height="fill_parent" - android:layout_width="fill_parent"> + android:layout_height="match_parent" + android:layout_width="match_parent"> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_height="fill_parent" - android:layout_width="fill_parent" + android:layout_height="match_parent" + android:layout_width="match_parent" android:orientation="vertical"> <TextView android:id="@+id/message" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="20dip" android:layout_marginRight="20dip" @@ -40,7 +40,7 @@ <EditText android:id="@+id/text" android:layout_height="wrap_content" - android:layout_width="fill_parent" + android:layout_width="match_parent" android:layout_marginTop="20dip" android:layout_marginLeft="20dip" android:layout_marginRight="20dip" |