私はアンドロイドスタジオが初めてです。どんな助けでも大歓迎です。
何らかの理由で、FrameLayout に背景色を追加すると、BottomNavigationView の背景が塗りつぶされます。layout_above タグを使用して FrameLayout を BottomNavigationView の上に設定し、BottomNavigationView の ID を指定したため、これが発生する理由がわかりません。
これは、FrameLayout と BottomNavigationView を含む私の xml ファイルです。
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:design="http://schemas.android.com/apk/res-auto">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/bottom_navigation_bar"
android:layout_alignParentTop="true"
android:background="@color/colorPrimaryDark">
</FrameLayout>
<android.support.design.widget.BottomNavigationView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/bottom_navigation_bar"
android:layout_gravity="bottom"
design:menu="@menu/navigation_menu" />
</android.support.design.widget.CoordinatorLayout>
ここに私のメニューxmlファイルがあります:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/action_home"
android:title="@string/on_home"
android:icon="@drawable/ic_home"/>
<item
android:id="@+id/action_saved"
android:title="@string/on_saved"
android:icon="@drawable/ic_file_download"/>
<item
android:id="@+id/action_profile"
android:title="@string/on_profile"
android:icon="@drawable/ic_action_user"/>