Android Samsung Galaxy S10软键按钮栏隐藏了我们的应用程序底视图

时间:2019-08-01 11:49:00

标签: android themes samsung-galaxy android-softbuttons

我在屏幕底部使用自己的导航栏。它可以在所有设备中正常工作,但在Samsung Galaxy s10中却可以隐藏该底部导航栏。我猜这是因为软键按钮栏。从这里Bottom soft NavigationBar overlaps my 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>

我已随附图像供您参考。如何解决此问题。

Bottom bar is hidden in Samsung galaxy s10

enter image description here

0 个答案:

没有答案