デフォルトのActionBarタイトルのフォントサイズはいくつですか?


80

17dipのようです。誰かが正確なサイズを知っているかどうかを確認したいだけです。


15
材料設計のツールバーのためにこれを知っているお探しの方のために、私はこれを見つけた:<dimen name="abc_text_size_title_material_toolbar">20dp</dimen>
ピーター・ゴードン

回答:


120

短いもの…

$ grep ActionBar platforms/android-11/data/res/values/* につながる

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>

1
かっこいい、ありがとう!では、ミディアムとスモールは何を指しているのでしょうか?また、API 13以降ではテキストサイズしか変更できないようですが、これにより、3.0と3.2を実行しているタブレットで不整合が発生しませんか?
aimango 2012

styles.xmlおよびthemes.xmlには、デフォルトのThemeおよびTheme.Holo定義が含まれています。TextAppearance.Mediumは、指定したスタイル(継承して、参照されdeveloper.android.com/guide/topics/ui/themes.html#Inheritanceをstyle要素を使用して定義されました)。必要に応じて独自のFoo.Barスタイルを定義できます…テキストサイズをどのように変更するかわからないため、アプリケーション全体のルックアンドフィールの一貫性を保つ場合は、独自のスタイル/テーマを定義することをお勧めします。あなたのニーズを説明する新しい質問を投稿し、そこにリンクを置いてください;)
Renaud 2012

83

これは私にとってはうまくいきます。

これは、デフォルトのツールバースタイルを取得するために私が行うことです。

<?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>

これはデフォルトのスタイルを維持するためのトリックを行います style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"

次に、アクティビティで次のことができます。

Toolbar toolbarTop = (Toolbar) findViewById(R.id.toolbar_top);
TextView mTitle = (TextView) toolbarTop.findViewById(R.id.toolbar_title);
mTitle.setText("Custom...");

1
または@style / TextAppearance.Widget.AppCompat.Toolbar.Title
krossovochkin

いいえ。このスタイルは存在します。

属性名はでありstyle、ではないことに注意してくださいandroid:textStyle
RoshanaPitigala19年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.