summaryrefslogtreecommitdiffstats
path: root/res/layout/wallpaper_chooser.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/wallpaper_chooser.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/wallpaper_chooser.xml')
-rw-r--r--res/layout/wallpaper_chooser.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/res/layout/wallpaper_chooser.xml b/res/layout/wallpaper_chooser.xml
index 7267246da..92a6596ee 100644
--- a/res/layout/wallpaper_chooser.xml
+++ b/res/layout/wallpaper_chooser.xml
@@ -20,17 +20,17 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
<ImageView android:id="@+id/wallpaper"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1.0"
android:scaleType="fitCenter" />
<Gallery android:id="@+id/gallery"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button android:id="@+id/set"