Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b8863d96 authored by Adam Powell's avatar Adam Powell
Browse files

Add action mode decor to layout.screen_simple

Change-Id: I30ae9bcd484b33a4f64de94f82cc302189e50b9a
parent b422107d
Loading
Loading
Loading
Loading
+15 −5
Original line number Diff line number Diff line
@@ -21,9 +21,19 @@ This is an optimized layout for a screen, with the minimum set of features
enabled.
-->

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/content"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:fitsSystemWindows="true"
    android:orientation="vertical">
    <com.android.internal.widget.ActionBarContextView
         android:id="@+id/action_mode_bar"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:visibility="gone" />
    <FrameLayout
         android:id="@android:id/content"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:foregroundInsidePadding="false"
         android:foregroundGravity="fill_horizontal|top"
         android:foreground="?android:attr/windowContentOverlay" />
</LinearLayout>