AppCompat工具栏字体大小与纵向与横向不一致

时间:2015-02-12 20:11:35

标签: android android-toolbar

我正在使用此:https://xisberto.wordpress.com/2014/11/08/how-to-combine-actionbar-and-preferenceactivity-headers-with-appcompat/

enter image description here enter image description here

“设置”字体大小在纵向和横向之间变化。我如何保持一致?

2 个答案:

答案 0 :(得分:2)

这是正常的,纵向模式下的工具栏高度为56 dp,在横向48 dp中,操作系统调整其高度。如果您在横向中更改标题大小,请务必小心,因为您可以将其设置为高于工具栏。

答案 1 :(得分:0)

需要通过添加

来覆盖工具栏标题文字大小
  

应用程式:titleTextAppearance

工具栏XML:

<android.support.v7.widget.Toolbar
    android:id="@+id/main_toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    app:titleTextAppearance="@style/ToolbarTitle"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

工具栏样式:

<style name="ToolbarTitle" parent="@style/TextAppearance.Widget.AppCompat.Toolbar.Title">
    <item name="android:textSize">20sp</item>
</style>

摘自here