aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Doan <andy.doan@linaro.org>2012-02-14 12:26:15 -0600
committerAndy Doan <andy.doan@linaro.org>2012-02-14 12:26:15 -0600
commit387b9bc6c1264480a5423e759aa63d1e6d538c92 (patch)
tree8579d93f5db3c823de8bcb28f4346ab08ea2d034
parentf7fca9f81adeb10824a51b6efd848be5ee3e229a (diff)
downloadLinaroConnect-387b9bc6c1264480a5423e759aa63d1e6d538c92.tar.gz
fix warning about fill_parent in layout
According to the new SDK, this field should be wrap_content Signed-off-by: Andy Doan <andy.doan@linaro.org>
-rw-r--r--res/layout/schedule_item_activity.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/layout/schedule_item_activity.xml b/res/layout/schedule_item_activity.xml
index 7b12508..6390f58 100644
--- a/res/layout/schedule_item_activity.xml
+++ b/res/layout/schedule_item_activity.xml
@@ -5,7 +5,7 @@
<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_height="wrap_content"
android:background="@color/main_bg"
android:paddingLeft="5dp"
>