1

Androidアプリケーションで問題が発生しました。複数のフラグメントを含むアクティビティが1つあります。この活動のレイアウトはここにある:Android - Bottom Navigation View&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> 

私の問題は、BottomNavigationViewが仮想ナビゲーションバー(Huawei社の携帯電話)に自分の携帯電話に表示されていないことです。しかし、それは私のサムスンギャラクシーS6と完全に動作します。

私はそれがBottomNavigationviewを隠していた仮想ナビゲーションバーだと直接考えていたので、コードhereで非表示にしようとしました。 そして、それは私が正しいことを示しましたが、私はナビゲーションバーを隠さずに永久にすることはできないので、私の問題は解決しません。

その後、BottomNavigationViewを簡単な操作で表示しようとしましたが、Huaweiではうまく動作しています。

私は断片の中で起こる問題だと思っています。おそらく、DrawerLayoutや他のものが私のコード内にあるのでしょうか?

誰かが既にこの問題に遭遇していた場合は、私を助けてください!ありがとうございました !

答えて

0

私は同じ問題に直面していませんでしたが、私はlinkを見つけ、いくつかの回避策について話し合っています。また、サポートライブラリBottomNavigationViewを使用していますが、この問題はありません。それがうまくいかない場合は、BottomNavigationView with Fragmentsにnice tutorialがあります。最近更新されました。別の外部ライブラリを使用しています。 希望に役立ちます!

関連する問題