如何确定工具栏的文本大小?

时间:2018-06-13 08:50:50

标签: android android-layout android-studio android-fragments

我在清单文件中为工具栏定义了一个文本。

<activity
            android:name=".instandhalter_screen.WikiInstandhalterScreenActivity"
            android:label="Instandhalter  >  Wiki"
            android:parentActivityName=".instandhalter_screen.InstandhalterScreenActivity"
            android:screenOrientation="landscape">
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="de.derdoenerdon.ressourcencockpit2.instandhalter_screen.InstandhalterScreenActivity" />
        </activity> 

我想&#34;确定&#34;文本"Instandhalter > Wiki"

的大小

有办法吗?

谢谢

2 个答案:

答案 0 :(得分:0)

您必须创建主题并将其添加到清单中:

android:theme="@style/customizedTheme"

要创建主题,请在文件res / styles.xml中输入:

<style name="customizedTheme" >
    <item name="android:textSize">50dp</item>
    <-- You can add more style elements here -->
</style>

答案 1 :(得分:0)

您可以通过简单地将android:textSize属性添加到在styles.xml文件中定义的属性来更改ActionBar Title的文本大小。

<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- set the size of action bar title . -->
    <item name="android:textSize">12sp</item>
</style>