diff options
author | Adam Cohen <adamcohen@google.com> | 2011-09-19 11:48:03 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-09-19 11:48:03 -0700 |
commit | a279f5c2b0c30cd7b0d3e574794fcfd1667531f0 (patch) | |
tree | 002423fe677a48e39533df4804718d43ba8fe5da /res/layout-port/workspace_cling.xml | |
parent | e33f810a19d5db5b5c5a67eceeb12a5bc1a51b09 (diff) | |
parent | 18428a79810761e68d93eeb33d6032d84abdd25a (diff) | |
download | packages_apps_trebuchet-a279f5c2b0c30cd7b0d3e574794fcfd1667531f0.zip packages_apps_trebuchet-a279f5c2b0c30cd7b0d3e574794fcfd1667531f0.tar.gz packages_apps_trebuchet-a279f5c2b0c30cd7b0d3e574794fcfd1667531f0.tar.bz2 |
am 18428a79: Merge "Updating Clings. (5057945, 5056643)" into ics-factoryrom
* commit '18428a79810761e68d93eeb33d6032d84abdd25a':
Updating Clings. (5057945, 5056643)
Diffstat (limited to 'res/layout-port/workspace_cling.xml')
-rw-r--r-- | res/layout-port/workspace_cling.xml | 56 |
1 files changed, 31 insertions, 25 deletions
diff --git a/res/layout-port/workspace_cling.xml b/res/layout-port/workspace_cling.xml index 8c4a0b3..d5aff8a 100644 --- a/res/layout-port/workspace_cling.xml +++ b/res/layout-port/workspace_cling.xml @@ -16,36 +16,42 @@ <com.android.launcher2.Cling xmlns:android="http://schemas.android.com/apk/res/android" xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" - launcher:drawIdentifier="workspace_portrait" - android:background="#AA000000"> + launcher:drawIdentifier="workspace_portrait"> <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginLeft="20dp" android:layout_marginTop="90dp"> - <TextView - style="@style/ClingTitleText" - android:id="@+id/workspace_cling_title" - android:layout_marginTop="0dp" - android:text="@string/workspace_cling_title" /> - <TextView - style="@style/ClingText" - android:id="@+id/workspace_cling_move_item" - android:layout_width="285dp" + <LinearLayout + android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_marginTop="50dp" - android:text="@string/workspace_cling_move_item" /> - <TextView - style="@style/ClingText" - android:id="@+id/workspace_cling_open_all_apps" - android:layout_width="200dp" - android:layout_height="wrap_content" - android:layout_marginTop="100dp" - android:text="@string/workspace_cling_open_all_apps" /> - <Button - style="@style/ClingButton" - android:id="@+id/cling_dismiss" - android:layout_marginTop="160dp" - android:onClick="dismissWorkspaceCling" /> + android:orientation="vertical"> + <TextView + style="@style/ClingTitleText" + android:id="@+id/workspace_cling_title" + android:text="@string/workspace_cling_title" /> + <TextView + style="@style/ClingText" + android:id="@+id/workspace_cling_move_item" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/workspace_cling_move_item" /> + </LinearLayout> </FrameLayout> + <TextView + style="@style/ClingText" + android:id="@+id/workspace_cling_open_all_apps" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginBottom="130dp" + android:layout_gravity="bottom" + android:gravity="center" + android:text="@string/workspace_cling_open_all_apps" /> + <Button + style="@style/ClingButton" + android:id="@+id/cling_dismiss" + android:layout_marginBottom="15dp" + android:layout_marginRight="10dp" + android:layout_gravity="bottom|right" + android:onClick="dismissWorkspaceCling" /> </com.android.launcher2.Cling>
\ No newline at end of file |