问题在于标题,我使用底部导航视图/栏,它在没有虚拟导航栏的智能手机上正常工作:
On my Samsung Galaxy S6 Edge without Navigation Bar
使用虚拟导航栏,底部导航视图消失:
On my Huawei with virtual Navigation Bar
我尝试删除导航栏并强制应用程序进入全屏模式并显示底部导航视图/栏。
这就是为什么我认为智能手机导航栏会覆盖导航底栏。
我希望我的导航底栏位于虚拟导航栏上方! 请帮我解决这个问题。
编辑: 以下是此活动的布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawerlayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/ic_fond_opacite"
android:fitsSystemWindows="false">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<FrameLayout
android:id="@+id/frame"
android:layout_above="@+id/bottomNavigationAvis"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<com.luseen.luseenbottomnavigation.BottomNavigation.BottomNavigationView
android:id="@+id/bottomNavigationAvis"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:bnv_active_color="@color/vraiment_pro_vert"
app:itemBackground="@color/vraiment_pro_fond_gris"
app:itemTextColor="@color/vraiment_pro_fond_gris"
app:bnv_active_text_size="@dimen/bottom_navigation_text_size_active"
app:bnv_colored_background="true"
app:bnv_inactive_text_size="@dimen/bottom_navigation_text_size_inactive"
app:bnv_with_text="true" />
</RelativeLayout>
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:0)
尝试将RelativeLayout
高度设置为match_parent
,如下所示。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</RelativeLayout>
答案 1 :(得分:0)
我解决了!我的代码中存在阻止UI的问题,遗憾的是,抱歉:)