summaryrefslogtreecommitdiffstats
path: root/res/layout-port/launcher.xml
diff options
context:
space:
mode:
authorRomain Guy <romainguy@android.com>2010-01-08 15:07:00 -0800
committerRomain Guy <romainguy@android.com>2010-01-08 15:11:52 -0800
commit8f19cdd62f6e2be05e3890916eabd11317ae1bc2 (patch)
treec46060e1f7e6cefeff2ef05df3a2d83819edb37a /res/layout-port/launcher.xml
parent677298ac895933c4276a84466684418fa3bec2ba (diff)
downloadandroid_packages_apps_Trebuchet-8f19cdd62f6e2be05e3890916eabd11317ae1bc2.tar.gz
android_packages_apps_Trebuchet-8f19cdd62f6e2be05e3890916eabd11317ae1bc2.tar.bz2
android_packages_apps_Trebuchet-8f19cdd62f6e2be05e3890916eabd11317ae1bc2.zip
Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
Diffstat (limited to 'res/layout-port/launcher.xml')
-rw-r--r--res/layout-port/launcher.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/res/layout-port/launcher.xml b/res/layout-port/launcher.xml
index 001f3e322..f73e91c5d 100644
--- a/res/layout-port/launcher.xml
+++ b/res/layout-port/launcher.xml
@@ -19,13 +19,13 @@
xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher2"
android:id="@+id/drag_layer"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
<com.android.launcher2.AllAppsView
android:id="@+id/all_apps_view"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
android:scrollbarStyle="outsideInset"
android:drawSelectorOnTop="false"
@@ -38,8 +38,8 @@
<!-- The workspace contains 3 screens of cells -->
<com.android.launcher2.Workspace
android:id="@+id/workspace"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
launcher:defaultScreen="2">
<include android:id="@+id/cell1" layout="@layout/workspace_screen" />