我是新開發的Android開發人員,當使用在android studio中創建的導航抽屜時,我非常努力地實現更多自定義工具欄(或操作欄)。當我創建從模板抽屜式導航欄中的活動,這似乎是定義工具欄是app_bar_main.xml 這裏的文件是app_bar_main.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:title="Press"
android:titleTextColor="#FFFFFF"
/>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
正如你所看到的,我試圖更改工具欄的標題(按)和文本顏色,但是在運行時,沒有任何更改,它仍然只是說MainActivity,這是我的導航抽屜活動被調用。我怎樣才能定義這個工具欄,以便我可以自定義它(中心標題,使背景透明,刪除設置按鈕等,我需要保持漢堡圖標顯然打開抽屜) 感謝您的未來幫助大家!讓我知道是否需要提供我的代碼的任何其他部分
後整個佈局代碼,樣式,然後發佈onCreate方法。我會看看它。 –