2015-12-02 157 views
5

在主題中聲明.NoActionBar之後,以及將toolbar置於佈局中,我的toolbar未顯示。我最終得到的正是你在聲明沒有操作欄時所期望的 - 沒有操作欄。這裏是佈局:AppCompat工具欄未顯示

activity_home.xml:

<include 
    layout="@layout/app_bar_home" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"/> 

<android.support.design.widget.NavigationView 
    android:id="@+id/nav_view" 
    android:layout_width="wrap_content" 
    android:layout_height="match_parent" 
    android:layout_gravity="start" 
    android:fitsSystemWindows="true" 
    app:headerLayout="@layout/nav_header_home" 
    app:menu="@menu/activity_home_drawer"/> 

app_bar_home.xml

<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:theme="@style/AppTheme.AppBarOverlay"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     app:popupTheme="@style/AppTheme.PopupOverlay"/> 

</android.support.design.widget.AppBarLayout> 

<include layout="@layout/content_home"/> 

+3

您需要提供您的XML,不只是片段的完整結構。 「activity_home」的根視圖組類型是什麼?它是一個'LinearLayout'嗎?這裏的麻煩最可能的原因是'app_bar_home'和'nav_view'都將其'height'屬性設置爲'match_parent',所以它們中的一個匹配父級,並將另一個推到屏幕外。 –

+0

顯示java代碼.. –

回答

4

在你的活動,你必須初始化工具欄(如果你不這樣做的話)

Toolbar toolbar = (Toolbar)findViewById(R.id.toolbar); 
setSupportActionBar(toolbar); 
+2

也看看 http://stackoverflow.com/questions/26515058/this-activity-already-has-an-action-bar-supplied-by-the-window-decor 這是一個更完整的答案。上述解決方案無法修復樣式。 – StarWind0