summaryrefslogtreecommitdiffstats
path: root/res/layout/launcher_overlay_example.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/launcher_overlay_example.xml')
-rw-r--r--res/layout/launcher_overlay_example.xml12
1 files changed, 7 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>