我的Android应用程序出了问题,我有一个Activity里面有多个Fragments。此活动的布局如下:
<?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>
我的问题是 BottomNavigationView 在我的手机上没有显示虚拟导航栏(华为手机)。但它完全适用于我的三星Galaxy S6。
我直接认为是虚拟导航栏隐藏了BottomNavigationview,所以我试图用代码here隐藏它。 它表明我是对的,但它并没有解决我的问题,因为我不想隐藏导航栏而且它不会是永久性的。
之后,我尝试在一个简单的活动中显示我的 BottomNavigationView ,它在华为上工作正常。
所以我认为这是一个在Fragment中发生的问题,可能是由我的代码中的DrawerLayout或其他东西造成的?
如果有人已经遇到这个问题,请帮助我!谢谢!