Scheint 17dip zu sein. Ich möchte es nur bestätigen, wenn jemand die genaue Größe kennt.
Antworten:
Der kurze…
$ grep ActionBar platforms/android-11/data/res/values/*
führt zu
styles.xml:
<style name="TextAppearance.Widget.ActionBar.Title"
parent="@android:style/TextAppearance.Medium">
</style>
<style name="TextAppearance.Widget.ActionBar.Subtitle"
parent="@android:style/TextAppearance.Small">
</style>
[…]
<style name="TextAppearance.Medium">
<item name="android:textSize">18sp</item>
</style>
<style name="TextAppearance.Small">
<item name="android:textSize">14sp</item>
<item name="android:textColor">?textColorSecondary</item>
</style>
Das funktioniert bei mir.
Dies ist, was ich tue, um den Standard-Symbolleistenstil zu erhalten:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar_top"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:background="@color/primary_dark">
<TextView
android:id="@+id/toolbar_title"
style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</android.support.v7.widget.Toolbar>
Dies macht den Trick, um den Standardstil beizubehalten style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
Dann können Sie in Ihrer Aktivität Folgendes tun:
Toolbar toolbarTop = (Toolbar) findViewById(R.id.toolbar_top);
TextView mTitle = (TextView) toolbarTop.findViewById(R.id.toolbar_title);
mTitle.setText("Custom...");
style
nicht ist android:textStyle
.
<dimen name="abc_text_size_title_material_toolbar">20dp</dimen>