本文介绍了如何更改工具栏的文字大小?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想更改Toolbar中的文本大小.因为在我的应用程序中,Toolbar文本在横向和纵向模式下都具有不同的大小.

I want to change the size of text in Toolbar. Because in my application, Toolbar text has different sizes both for landscape and portrait mode.

是否可以更改Toolbar中文本的文本大小?

Is it possible to change the text size of text in Toolbar?

推荐答案

使用 app: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>

结果:

这篇关于如何更改工具栏的文字大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 03:14