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

Commit 8e552630 authored by Adam Powell's avatar Adam Powell
Browse files

Let action modes overlay window content

Change-Id: Ic0512c3e6338e1de15facec0a6650f9da9808a24
parent 2cd1dbe5
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -16619,6 +16619,17 @@
 visibility="public"
>
</field>
<field name="Theme_NoTitleBar_OverlayActionModes"
 type="int"
 transient="false"
 volatile="false"
 value="16973973"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="Theme_Panel"
 type="int"
 transient="false"
+22 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
** Copyright 2010, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
**     http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
-->
<com.android.internal.widget.ActionBarContextView
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="wrap_content" />
+5 −5
Original line number Diff line number Diff line
@@ -26,11 +26,11 @@ This is the basic layout for a screen, with all of its features enabled.
    android:layout_height="match_parent"
>
    <!-- Popout bar for action modes -->
    <com.android.internal.widget.ActionBarContextView
         android:id="@+id/action_mode_bar"
    <ViewStub android:id="@+id/action_mode_bar_stub"
              android:inflatedId="@+id/action_mode_bar"
              android:layout="@layout/action_mode_bar"
              android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:visibility="gone" />
              android:layout_height="wrap_content" />

    <!-- Title bar -->
    <RelativeLayout android:id="@android:id/title_container"
+5 −5
Original line number Diff line number Diff line
@@ -22,11 +22,11 @@ This is an custom layout for a screen.
    android:orientation="vertical"
    android:fitsSystemWindows="true">
    <!-- Popout bar for action modes -->
    <com.android.internal.widget.ActionBarContextView
         android:id="@+id/action_mode_bar"
    <ViewStub android:id="@+id/action_mode_bar_stub"
              android:inflatedId="@+id/action_mode_bar"
              android:layout="@layout/action_mode_bar"
              android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:visibility="gone" />
              android:layout_height="wrap_content" />

    <FrameLayout android:id="@android:id/title_container" 
        android:layout_width="match_parent" 
+5 −5
Original line number Diff line number Diff line
@@ -27,11 +27,11 @@ This is the basic layout for a screen, with all of its features enabled.
    android:layout_height="match_parent"
>
    <!-- Popout bar for action modes -->
    <com.android.internal.widget.ActionBarContextView
         android:id="@+id/action_mode_bar"
    <ViewStub android:id="@+id/action_mode_bar_stub"
              android:inflatedId="@+id/action_mode_bar"
              android:layout="@layout/action_mode_bar"
              android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:visibility="gone" />
              android:layout_height="wrap_content" />

    <RelativeLayout android:id="@android:id/title_container" 
        style="?android:attr/windowTitleBackgroundStyle"
Loading