我在屏幕底部使用自己的导航栏。它在所有设备上都能正常工作,但在三星 Galaxy s10 中,这个底部导航栏被隐藏了。我猜这是因为软键按钮栏。从这里底部软导航栏与我的 ListView 重叠我
尝试<item name="android:windowDrawsSystemBarBackgrounds">false</item>
在我的主题中使用它并且它解决了问题但是如果我在我的主题中使用这个参数,那么作为colorPrimaryDark的状态栏颜色不起作用。
我的布局文件就像
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.design.widget.CoordinatorLayout
android:id="@+id/home_coordinator"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_area"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:background="@color/C12">
<include layout="@layout/parts_search_header" />
<com.astuetz.PagerSlidingTabStrip
android:id="@+id/top_view_pager_tab_strip"
android:background="@color/white"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_gravity="top|center_vertical"
android:textColor="@color/C17"
android:textSize="15dp"
app:pstsIndicatorColor="@color/C10"
app:pstsIndicatorHeight="3dp"
app:pstsTabPaddingLeftRight="15dp"
app:pstsTextColorSelected="@color/C11"
app:pstsUnderlineColor="@color/border1"
app:pstsUnderlineHeight="1dp"
app:pstsShouldExpand="true"
app:pstsTabBackground="@drawable/touchstates_tab_strip"
/>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v4.view.ViewPager
android:id="@+id/top_view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>
<include layout="@layout/layout_footer_ad_view" />
<!-- bottom_navigation -->
<include layout="@layout/layout_bottom_navigation"/>
<!-- /bottom_navigation -->
</LinearLayout>
我附上了图片供您参考。如何解决这个问题。