diff options
author | Romain Guy <romainguy@google.com> | 2012-10-17 12:04:05 -0700 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2012-10-17 12:04:05 -0700 |
commit | e34a213c32d54c525fc1c4b6f79e449446435484 (patch) | |
tree | 37908cf6befc1cb8d30d4498349bc96af6c1937d /res/layout-land/workspace_cling.xml | |
parent | 0c2388a40c3435615afa1e9b424549d29a98f44e (diff) | |
download | packages_apps_trebuchet-e34a213c32d54c525fc1c4b6f79e449446435484.zip packages_apps_trebuchet-e34a213c32d54c525fc1c4b6f79e449446435484.tar.gz packages_apps_trebuchet-e34a213c32d54c525fc1c4b6f79e449446435484.tar.bz2 |
Add missing layout attributes
Bug #7334849
Change-Id: Iae01cf5c587716951dee849e9c4116717d137d8f
Diffstat (limited to 'res/layout-land/workspace_cling.xml')
-rw-r--r-- | res/layout-land/workspace_cling.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/res/layout-land/workspace_cling.xml b/res/layout-land/workspace_cling.xml index b66f1bd..b035aa1 100644 --- a/res/layout-land/workspace_cling.xml +++ b/res/layout-land/workspace_cling.xml @@ -16,6 +16,8 @@ <com.android.launcher2.Cling xmlns:android="http://schemas.android.com/apk/res/android" xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" + android:layout_width="match_parent" + android:layout_height="match_parent" launcher:drawIdentifier="workspace_landscape"> <FrameLayout android:layout_width="match_parent" @@ -28,6 +30,8 @@ android:orientation="vertical"> <TextView style="@style/ClingTitleText" + android:layout_width="wrap_content" + android:layout_height="wrap_content" android:text="@string/workspace_cling_title" /> <TextView style="@style/ClingText" @@ -46,6 +50,8 @@ android:text="@string/workspace_cling_open_all_apps" /> <Button style="@style/ClingButton" + android:layout_width="wrap_content" + android:layout_height="wrap_content" android:layout_marginBottom="15dp" android:layout_marginRight="10dp" android:layout_gravity="bottom|right" |