diff options
author | Winson Chung <winsonc@google.com> | 2011-09-16 20:14:36 -0700 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2011-09-18 18:38:11 -0700 |
commit | 7d7541e7b48fdc114c24b3b0aa75e70d7228041e (patch) | |
tree | 4b210341894a5e14d00d91009ac0b3874b76ac15 /res/layout-land/folder_cling.xml | |
parent | 23409c2a1247a7531348ab1c114eca959d78b37f (diff) | |
download | packages_apps_trebuchet-7d7541e7b48fdc114c24b3b0aa75e70d7228041e.zip packages_apps_trebuchet-7d7541e7b48fdc114c24b3b0aa75e70d7228041e.tar.gz packages_apps_trebuchet-7d7541e7b48fdc114c24b3b0aa75e70d7228041e.tar.bz2 |
Updating Clings. (5057945, 5056643)
Change-Id: Ifb2d37e92495aeddf9d4b3277eb8d2a846f4aa99
Diffstat (limited to 'res/layout-land/folder_cling.xml')
-rw-r--r-- | res/layout-land/folder_cling.xml | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/res/layout-land/folder_cling.xml b/res/layout-land/folder_cling.xml new file mode 100644 index 0000000..91d34ad --- /dev/null +++ b/res/layout-land/folder_cling.xml @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<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="folder_landscape"> + <FrameLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_marginLeft="40dp" + android:layout_marginTop="40dp"> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"> + <TextView + style="@style/ClingTitleText" + android:id="@+id/folder_cling_title" + android:text="@string/folder_cling_title" /> + <TextView + style="@style/ClingText" + android:id="@+id/folder_cling_move_item" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/folder_cling_move_item" /> + </LinearLayout> + </FrameLayout> + <TextView + style="@style/ClingText" + android:id="@+id/folder_cling_create_folder" + android:layout_width="340dp" + android:layout_height="wrap_content" + android:layout_marginLeft="40dp" + android:layout_marginBottom="40dp" + android:layout_gravity="bottom" + android:text="@string/folder_cling_create_folder" /> + <Button + style="@style/ClingButton" + android:id="@+id/cling_dismiss" + android:layout_marginBottom="15dp" + android:layout_marginRight="10dp" + android:layout_gravity="bottom|right" + android:onClick="dismissFolderCling" /> +</com.android.launcher2.Cling> |