summaryrefslogtreecommitdiffstats
path: root/pico/res
diff options
context:
space:
mode:
authorRomain Guy <romainguy@android.com>2010-01-08 15:06:08 -0800
committerRomain Guy <romainguy@android.com>2010-01-08 15:11:19 -0800
commit19f5f6b4b454816677a53a6c51719025382ac36e (patch)
tree9373cc551002c05b2f22c7e512d8b0a350958107 /pico/res
parentc0b0174e369f843841e5c7b5c33304ba11de0cf5 (diff)
downloadexternal_svox-19f5f6b4b454816677a53a6c51719025382ac36e.zip
external_svox-19f5f6b4b454816677a53a6c51719025382ac36e.tar.gz
external_svox-19f5f6b4b454816677a53a6c51719025382ac36e.tar.bz2
Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
Diffstat (limited to 'pico/res')
-rwxr-xr-xpico/res/layout/main.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/pico/res/layout/main.xml b/pico/res/layout/main.xml
index 7a7828e..5f7181a 100755
--- a/pico/res/layout/main.xml
+++ b/pico/res/layout/main.xml
@@ -19,11 +19,11 @@
<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"
>
<TextView
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/app_name"
/>