Android Lollipop 工具栏 `setTitle`
Android Lollipop toolbar `setTitle`
<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:layout_height="wrap_content"
android:background="@color/purple"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
当我使用 setTitle()
方法时,一切正常。但问题是,当我改变方向时(因为在棒棒糖 5.1 中我可以这样做),与纵向版本相比,标题词很小。为什么会有这样的错误?我该如何解决?
默认情况下,工具栏的字体大小横向较小。
如果您希望它与纵向尺寸相同,您可以设置自定义 titleTextAppearance
:
<android.support.v7.widget.Toolbar
app:titleTextAppearance="@style/YourToolbarTitleStyle"
.../>
其中 YourToolbarTitleStyle
被定义为您指定文本大小的样式:
<style name="YourToolbarTitleStyle" parent="@style/TextAppearance.Widget.AppCompat.Toolbar.Title">
<item name="android:textSize">20sp</item>
</style>
<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:layout_height="wrap_content"
android:background="@color/purple"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
当我使用 setTitle()
方法时,一切正常。但问题是,当我改变方向时(因为在棒棒糖 5.1 中我可以这样做),与纵向版本相比,标题词很小。为什么会有这样的错误?我该如何解决?
默认情况下,工具栏的字体大小横向较小。
如果您希望它与纵向尺寸相同,您可以设置自定义 titleTextAppearance
:
<android.support.v7.widget.Toolbar
app:titleTextAppearance="@style/YourToolbarTitleStyle"
.../>
其中 YourToolbarTitleStyle
被定义为您指定文本大小的样式:
<style name="YourToolbarTitleStyle" parent="@style/TextAppearance.Widget.AppCompat.Toolbar.Title">
<item name="android:textSize">20sp</item>
</style>