Toolbar大全

<android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
android.support.v7.widget.Toolbar>

1.边距

下列:左边默认边距设置为0dp

1.1.全局设置主题样式

     
    <style name="AppToolbar" parent="Base.Widget.AppCompat.Toolbar">
        
        "contentInsetStart">0dp
    style>
    
    <style name="AppBaseTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
        "colorPrimary">@color/colorPrimary
        "colorPrimaryDark">@color/colorPrimaryDark
        "colorAccent">@color/colorPrimary
        "windowNoTitle">true
        "windowActionBar">false
        
        "toolbarStyle">@style/AppToolbar
    style>

1.2单个Toolbar设置样式

1.2.1.xml方式设置
	<android.support.v7.widget.Toolbar
            android:id="@+id/toolbar_v"
            app:contentInsetStart="0dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
1.2.2.code方式设置
getSupportActionBar().setDisplayHomeAsUpEnabled(true);

你可能感兴趣的:(Android)