diff options
-rw-r--r-- | core/res/res/layout/screen_simple.xml | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/core/res/res/layout/screen_simple.xml b/core/res/res/layout/screen_simple.xml index df511c6..16af890 100644 --- a/core/res/res/layout/screen_simple.xml +++ b/core/res/res/layout/screen_simple.xml @@ -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:foregroundInsidePadding="false" - android:foregroundGravity="fill_horizontal|top" - android:foreground="?android:attr/windowContentOverlay" />
\ No newline at end of file + 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> |