summaryrefslogtreecommitdiffstats
path: root/res/layout/bluetooth_pin_entry.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/bluetooth_pin_entry.xml
parent9bd889d7fbad483471e0a4d26f05d2e68b67a2e4 (diff)
downloadpackages_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.xml12
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"