5

已升级应用以使用 Material Design - Theme.AppCompat.Light.NoActionBarToolbar而不是ActionBar等。

并且有问题。在 APi >= 21 的设备上,底部内容将隐藏在软导航栏下(见下图)

已找到解决此问题的解决方案:

values-v21/styles.xml

<style name="MyTheme" parent="Theme.AppCompat.Light.NoActionBar">
        ...
        <item name="colorPrimaryDark">@color/green</item>
        <item name="android:windowDrawsSystemBarBackgrounds">false</item>
</styles>

如果选项<item name="android:windowDrawsSystemBarBackgrounds">false</item>- 底部内容可见,但状态栏变为全黑。我无法将颜色更改为colorPrimaryDark(在我的情况下为绿色)

如果选项<item name="android:windowDrawsSystemBarBackgrounds">true</item>- 底部内容不可见,并且状态栏为绿色,如预期的那样。

我想要状态栏颜色(绿色)和可见的底部内容。可能是工具栏的问题。它会降低内容吗?

有什么建议么?

<item name="android:windowDrawsSystemBarBackgrounds">true</item>

<item name="android:windowDrawsSystemBarBackgrounds">false</item>

更新:

正如@azizbekian 所建议的那样,我已将片段容器替换为 CoordinatorLayout(在 FrameLayout 之前)并应用android:fitsSystemWindows="true" 在这种情况下,底部面板可见,但不在底部.. 目标是保持按钮在底部......

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_height="match_parent"
              android:layout_width="match_parent"
              android:orientation="vertical">
    <include
        layout="@layout/toolbar"/>

        <!-- The main content view -->
        <android.support.design.widget.CoordinatorLayout
                android:id="@+id/content"
            android:fitsSystemWindows="true"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
</LinearLayout>

画面布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:orientation="vertical"
        xmlns:android="http://schemas.android.com/apk/res/android">
    <FocusableScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:id="@+id/order_editor_layout"
        android:fillViewport="true">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <include
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                layout="@layout/o_e_content" 
                android:layout_alignParentRight="true"
                android:layout_alignParentEnd="true"
                android:layout_alignParentStart="true"
                android:layout_alignParentLeft="true"/>
        </RelativeLayout>
    </FocusableScrollView>
    <include
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            layout="@layout/oe_bottom_pane"/>
</LinearLayout>

这是结果:

更新#2

活动布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/my_toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:elevation="4dp"
        android:theme="@style/ActionBarTheme"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

        <!-- The main content view -->
        <FrameLayout
                android:id="@+id/content"
                android:layout_width="match_parent"
                android:layout_height="match_parent"/>
</android.support.design.widget.CoordinatorLayout>

替换LinearLayourCoordinatorLayout作为活动的根。作为我保留的内容的根元素FrameLayout。应用于. android:fitsSystemWindows="true"_ CoordinatorLayout这样,所有内容都略微向上移动,部分内容位于工具栏下方(您可以在下图中看到 - 顶部元素是带有 + 和 - 符号的圆圈。但在之前的图像中,顶部有文本。)关于底部元素(按钮面板) - 仍然位于导航栏下方,但也略微向上移动。我已标记android:background="@color/red"为更容易识别此面板的位置。

看来,我们走在正确的道路上。我们所需要的 - 解决问题 - 为什么内容移动到工具栏下方.. 如果 tolbar 将是顶部 ui 元素,按钮将可见..

4

1 回答 1

2

应用于android:fitsSystemWindows="true"您的根视图。

有关详细说明,请参阅此帖子

于 2017-08-11T12:15:34.593 回答