summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorAdam Cohen <adamcohen@google.com>2014-10-24 16:45:59 -0700
committerAdam Cohen <adamcohen@google.com>2014-10-24 16:46:19 -0700
commitbe25822f7677f376f9687e6a66cfa54739c40700 (patch)
treee04f57a782f475adac742cf2dfe66bcfeb6cdfa2 /res
parent0fb5ce20d7ae49f63628f88a1a238d6e2247dfe9 (diff)
downloadandroid_packages_apps_Trebuchet-be25822f7677f376f9687e6a66cfa54739c40700.tar.gz
android_packages_apps_Trebuchet-be25822f7677f376f9687e6a66cfa54739c40700.tar.bz2
android_packages_apps_Trebuchet-be25822f7677f376f9687e6a66cfa54739c40700.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
-rw-r--r--res/values/styles.xml2
3 files changed, 12 insertions, 6 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 b4e154336..a52bbe23f 100644
--- a/res/values/attrs.xml
+++ b/res/values/attrs.xml
@@ -145,4 +145,8 @@
<attr name="ringOutset" format="dimension" />
<attr name="indicatorSize" format="dimension" />
</declare-styleable>
+
+ <declare-styleable name="InsettableFrameLayout_Layout">
+ <attr name="layout_ignoreInsets" format="boolean" />
+ </declare-styleable>
</resources>
diff --git a/res/values/styles.xml b/res/values/styles.xml
index dae2c0212..15415c7c6 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -101,4 +101,4 @@
<item name="android:paddingLeft">8dp</item>
</style>
-</resources> \ No newline at end of file
+</resources>