toolbar字体大小修改

来源:互联网 发布:好工长之家 知乎 编辑:程序博客网 时间:2024/04/29 07:19

http://stackoverflow.com/questions/28487312/how-to-change-the-toolbar-text-size-in-android?newreg=6f9961ec5d204fbe876edf7993b152fc




Use titleTextAppearance:

<android.support.v7.widget.Toolbar    xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    android:layout_width="match_parent"    android:layout_height="?actionBarSize"    android:id="@+id/toolbar"    app:titleTextAppearance="@style/Toolbar.TitleText" />



and override the default title size in a custom style:

<style name="Toolbar.TitleText" parent="TextAppearance.Widget.AppCompat.Toolbar.Title">    <item name="android:textSize">18sp</item></style>


0 0
原创粉丝点击