Có vẻ là 17dip. Chỉ muốn xác nhận nó nếu có ai biết kích thước chính xác.
Câu trả lời:
Đoạn ngắn…
$ grep ActionBar platforms/android-11/data/res/values/*
dẫn đến
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>
Điều này làm việc cho tôi.
Đây là những gì tôi làm để có được kiểu thanh công cụ mặc định:
<?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>
Đây là mẹo để giữ kiểu mặc định style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
Sau đó, trong hoạt động của mình, bạn có thể làm:
Toolbar toolbarTop = (Toolbar) findViewById(R.id.toolbar_top);
TextView mTitle = (TextView) toolbarTop.findViewById(R.id.toolbar_title);
mTitle.setText("Custom...");
style
, không phải android:textStyle
.
<dimen name="abc_text_size_title_material_toolbar">20dp</dimen>