2017-02-21 71 views
0

嘿,我是新的android工作室,任何幫助將不勝感激。如何阻止背景顏色被添加到BottomNavigationView

由於某些原因,向我的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"/> 

回答

0

改變這一行

android:layout_above="@id/bottom_navigation_bar" 

機智h

android:layout_above="@+id/bottom_navigation_bar" 

希望它有幫助。如果這不起作用嘗試改變下面的代碼你的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"> 
    <RelativeLayout         
     android:layout_width="match_parent" 
     android:layout_height="match_parent"               
     > 
    <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" 
     android:layout_alignParentBottom="true" 
     design:menu="@menu/navigation_menu" /> 
    </RelativeLayout> 
    </android.support.design.widget.CoordinatorLayout> 

嘗試使用此XML

+0

似乎沒有工作,還是要謝謝你 – Chris

+0

盡我更新的答案兄弟 –

+0

AW味甘,奏效謝謝您! – Chris