2017-04-04 172 views
0

我想在我的底部菜單上獲得4項,但第4個不是動畫,我應該切換到完全不同的菜單格式,我認爲這個菜單類型將支持3 -5項。Android底部導航菜單4項

<?xml version="1.0" encoding="utf-8"?> 
<menu xmlns:app="http://schemas.android.com/apk/res-auto" 
xmlns:android="http://schemas.android.com/apk/res/android"> 

<item 
    android:id="@+id/navigation_home" 
    android:icon="@mipmap/news_icon" 
    android:title="@string/title_news" /> 

<item 
    android:id="@+id/navigation_dashboard" 
    android:icon="@drawable/ic_dashboard_black_24dp" 
    android:title="@string/title_schedule" /> 

<item 
    android:id="@+id/navigation_notifications" 
    android:icon="@drawable/ic_notifications_black_24dp" 
    android:title="@string/title_team" /> 
<item 
    android:id="@+id/login" 
    android:icon="@drawable/ic_notifications_black_24dp" 
    android:title="@string/title_team" /> 

</menu> 

主要活動代碼

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
xmlns:tools="http://schemas.android.com/tools" 
android:id="@+id/container" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical" 
tools:context="com.example.tibblist.attkapp.MainActivity"> 

<FrameLayout 
    android:id="@+id/content" 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1"> 

</FrameLayout> 

<android.support.design.widget.BottomNavigationView 
    android:id="@+id/navigation" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_gravity="bottom" 
    android:background="?android:attr/windowBackground" 
    app:menu="@menu/navigation" /> 

</LinearLayout> 

回答

0

我犯了一個愚蠢的錯誤原來我沒有在我的onNavigationItemSelected功能switch語句返回true。