summaryrefslogtreecommitdiffstats
path: root/res/layout/choose_lock_pattern.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/choose_lock_pattern.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/choose_lock_pattern.xml')
-rw-r--r--res/layout/choose_lock_pattern.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/res/layout/choose_lock_pattern.xml b/res/layout/choose_lock_pattern.xml
index 78ab8b4..97c647f 100644
--- a/res/layout/choose_lock_pattern.xml
+++ b/res/layout/choose_lock_pattern.xml
@@ -18,18 +18,18 @@
android:id="@+id/topLayout"
android:orientation="vertical"
android:layout_width="wrap_content"
- android:layout_height="fill_parent"
+ android:layout_height="match_parent"
android:background="@color/black">
<!-- takes up all space above button bar at bottom -->
<LinearLayout
android:orientation="vertical"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1">
<TextView android:id="@+id/headerText"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:gravity="center"
@@ -37,7 +37,7 @@
<View
android:background="@*android:drawable/code_lock_top"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="2dip" />
<com.android.internal.widget.LockPatternView android:id="@+id/lockPattern"
android:layout_width="wrap_content"
@@ -46,11 +46,11 @@
<!-- bottom line looks bad when button bar is their too, omit in this case -->
<!--View
android:background="@*android:drawable/code_lock_bottom"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="8dip" /-->
<TextView android:id="@+id/footerText"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:gravity="center"
@@ -61,7 +61,7 @@
<LinearLayout style="@android:style/ButtonBar"
android:orientation="horizontal"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button android:id="@+id/footerLeftButton"