1. 程式人生 > >Toolbar修改字型顏色與新增返回鍵

Toolbar修改字型顏色與新增返回鍵

1.佈局中新增toolbar:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:background="?attr/colorPrimary"
android:layout_height="wrap_content" android:fitsSystemWindows="true" android:titleTextColor="?attr/colorPrimary" app:title="Toolbar" app:titleTextColor="#ffffff" app:theme="@style/ToolbarTheme"//通過主題改變返回鍵顏色 android:minHeight="?attr/actionBarSize">
</android.support.v7.widget.Toolbar
>

ToolbarTheme:

<style name="ToolbarTheme" parent="@style/ThemeOverlay.AppCompat.ActionBar">
        <item name="colorControlNormal">#ffffff</item>
    </style>

2.程式碼中設定顯示返回鍵:

 setSupportActionBar(mToolbar);
            //設定是否有返回箭頭
            getSupportActionBar().setDisplayHomeAsUpEnabled(true
); //設定標題文字 mToolbar.setTitle("mToolbar");