summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
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>