在styles.xml中设置默认字体大小

时间:2017-06-06 05:31:00

标签: android xamarin

我正在开发一个Android项目。

我有一个标签页,页面标题非常大。 我想要做的是通过更改styles.xml

中的值来减小字体大小

你知道是否可能吗?

该项目是用Xamarin编写的,所以我想避免写一些特定的代码,比如渲染器。

非常感谢

1 个答案:

答案 0 :(得分:4)

这是可能的 styles.xml 如下:

 <style name="FontTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:textSize">20sp</item>
        <item name="android:textColor">@color/black</item>
 </style>

使用代码:

<TextView   
    style="@style/FontTheme"  
    android:layout_marginTop="100dp"  
    android:text="test1"/>