summaryrefslogtreecommitdiffstats
path: root/res/layout-port
diff options
context:
space:
mode:
authorDanesh Mondegarian <daneshm90@gmail.com>2014-02-02 02:11:28 -0800
committerAbhisek Devkota <ciwrl@cyanogenmod.com>2014-02-05 02:16:38 +0000
commit20109c489eed6e97803ed5e5745c8c377b0446cb (patch)
tree519756c82c1260c1d7eb2b9b7f11880478ae3fd2 /res/layout-port
parentdc6e2bafb333b4c0d6311d9c225374f403d105c5 (diff)
downloadandroid_packages_apps_Trebuchet-20109c489eed6e97803ed5e5745c8c377b0446cb.tar.gz
android_packages_apps_Trebuchet-20109c489eed6e97803ed5e5745c8c377b0446cb.tar.bz2
android_packages_apps_Trebuchet-20109c489eed6e97803ed5e5745c8c377b0446cb.zip
Trebuchet : Show cling for allapps overview
This patchset adds a cling for the all apps indicator overview mode as by default it is not very discoverable. PS4: Strings + fixes Change-Id: If7e91a0e123c0fbc4d4f4ed6ef35c1ff7b1abfb1
Diffstat (limited to 'res/layout-port')
-rw-r--r--res/layout-port/all_apps_cling.xml51
-rw-r--r--res/layout-port/launcher.xml6
2 files changed, 40 insertions, 17 deletions
diff --git a/res/layout-port/all_apps_cling.xml b/res/layout-port/all_apps_cling.xml
index 62284ec73..ed99d78a0 100644
--- a/res/layout-port/all_apps_cling.xml
+++ b/res/layout-port/all_apps_cling.xml
@@ -16,33 +16,50 @@
<com.android.launcher3.Cling
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto/com.android.launcher3"
- launcher:drawIdentifier="all_apps_portrait">
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ launcher:drawIdentifier="all_apps">
<FrameLayout
+ android:id="@+id/content"
android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginStart="20dp"
- android:layout_marginTop="20dp">
+ android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
+ android:layout_gravity="top"
+ android:layout_marginStart="25dp"
+ android:layout_marginEnd="25dp"
+ android:layout_marginTop="30dp"
android:orientation="vertical">
- <TextView
- style="@style/ClingTitleText"
- android:id="@+id/all_apps_cling_title"
- android:text="@string/all_apps_cling_title" />
- <TextView
- style="@style/ClingText"
- android:id="@+id/all_apps_cling_add_item"
- android:layout_width="285dp"
+ <LinearLayout
+ android:paddingLeft="20dp"
+ android:paddingRight="20dp"
+ android:paddingTop="20dp"
+ android:paddingBottom="20dp"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:text="@string/all_apps_cling_add_item" />
+ android:orientation="vertical"
+ android:background="@drawable/cling">
+ <TextView
+ style="@style/ClingTitleText"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/all_apps_cling_cm" />
+ <TextView
+ style="@style/ClingText"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/all_apps_cling_summary" />
+ </LinearLayout>
</LinearLayout>
</FrameLayout>
+
<Button
style="@style/ClingButton"
- android:id="@+id/cling_dismiss"
- android:layout_marginBottom="15dp"
- android:layout_marginEnd="10dp"
- android:layout_gravity="bottom|end"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="60dp"
+ android:layout_marginRight="20dp"
+ android:layout_gravity="bottom|right"
android:onClick="dismissAllAppsCling" />
</com.android.launcher3.Cling>
diff --git a/res/layout-port/launcher.xml b/res/layout-port/launcher.xml
index 11f74ba1d..98cd0f3b6 100644
--- a/res/layout-port/launcher.xml
+++ b/res/layout-port/launcher.xml
@@ -99,6 +99,12 @@
android:layout_height="match_parent"
android:visibility="invisible" />
+ <include layout="@layout/all_apps_cling"
+ android:id="@+id/all_apps_cling"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:visibility="gone" />
+
<include layout="@layout/overview_panel"
android:id="@+id/overview_panel"
android:visibility="gone" />