已升级的应用使用Material Design - Theme.AppCompat.Light.NoActionBar ,工具栏而不是 ActionBar 等。
有问题。 在APi> = 21的设备上,底部内容将隐藏在软NavigationBar下(见下图)
已找到解决方案来解决此问题:
在 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>
以LinearLayour
替换CoordinatorLayout
作为活动的root用户。
作为内容的根元素,我保留FrameLayout
。
已将android:fitsSystemWindows="true"
应用于CoordinatorLayout
。
这样,所有内容都略微向上移动,部分位于工具栏下方(您可以在下方图片中看到 - 顶部元素是带有+和 - symbold的圆圈。但在之前的图像上,顶部有文字。)关于底部元素(按钮面板) - 仍然位于导航栏下方,但也略微向上移动。我已将android:background="@color/red"
标记为更容易识别此面板的位置。
似乎,我们是正确的方式。我们所需要的 - 解决问题 - 为什么内容移动到工具栏下面..如果tolbar将是最顶层的,按钮将是可见的..