summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorAdam Cohen <adamcohen@google.com>2014-10-24 16:45:59 -0700
committerDanesh M <daneshm90@gmail.com>2015-09-27 18:55:56 -0700
commitbb2619a2c4f53acca421f98a17f46d96b17fa68f (patch)
tree383b2dd2da994a9c0255a341ad472f9ee7cc2546 /res
parenta853e39fe9119059ccbb8321f891172fa60ccc4b (diff)
downloadandroid_packages_apps_Trebuchet-bb2619a2c4f53acca421f98a17f46d96b17fa68f.tar.gz
android_packages_apps_Trebuchet-bb2619a2c4f53acca421f98a17f46d96b17fa68f.tar.bz2
android_packages_apps_Trebuchet-bb2619a2c4f53acca421f98a17f46d96b17fa68f.zip
Add InsettableFrameLayout layout params to easily ignore insets
Change-Id: I117fc34627e24ea5f909c3c87e9c2dbca46babb6
Diffstat (limited to 'res')
-rw-r--r--res/layout/launcher_overlay_example.xml12
-rw-r--r--res/values/attrs.xml4
2 files changed, 11 insertions, 5 deletions
diff --git a/res/layout/launcher_overlay_example.xml b/res/layout/launcher_overlay_example.xml
index 8735d141b..1556b6f90 100644
--- a/res/layout/launcher_overlay_example.xml
+++ b/res/layout/launcher_overlay_example.xml
@@ -14,19 +14,21 @@
limitations under the License.
-->
-<com.android.launcher3.InsettableFrameLayout
+<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:launcher="http://schemas.android.com/apk/res-auto/com.android.launcher3"
android:layout_width="match_parent"
- android:layout_height="match_parent">
+ android:layout_height="match_parent"
+ launcher:layout_ignoreInsets="true">
- <com.android.launcher3.InsettableFrameLayout
+ <FrameLayout
android:id="@+id/search_overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ff00ff00"
android:visibility="invisible" />
- <com.android.launcher3.InsettableFrameLayout
+ <FrameLayout
android:id="@+id/search_box"
android:layout_width="match_parent"
android:layout_height="48dp"
@@ -34,4 +36,4 @@
android:layout_marginRight="8dp"
android:layout_marginTop="36dp"
android:background="#ffff0000" />
-</com.android.launcher3.InsettableFrameLayout>
+</FrameLayout>
diff --git a/res/values/attrs.xml b/res/values/attrs.xml
index fddb1bcaf..74f942c92 100644
--- a/res/values/attrs.xml
+++ b/res/values/attrs.xml
@@ -161,4 +161,8 @@
<attr name="precision" format="float" />
<attr name="sizeToFit" format="boolean" />
</declare-styleable>
+
+ <declare-styleable name="InsettableFrameLayout_Layout">
+ <attr name="layout_ignoreInsets" format="boolean" />
+ </declare-styleable>
</resources>