在Xamarin Android中为按钮文本设置自定义字体

时间:2019-03-05 08:25:22

标签: android xamarin xamarin.android

我有一个按钮,我想为文本设置自定义字体,但是这样做很麻烦。

代码如下:

在.xml文件中:

<Button
        android:id="@+id/button"
        style="@style/ButtonStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:text="Sample Text"/>

和styles.xml

<style name="ButtonStyle" parent="@style/Widget.AppCompat.Button.Borderless">
        <item name="android:textSize">@dimen/button_text_size</item>
        <item name="android:background">@drawable/button_background</item>
        <item name="android:textAppearanceButton">@style/ButtonTextStyle</item>
        <item name="android:textColor">?android:textColorPrimaryInverse</item>
    </style>

<style name="ButtonTextStyle" parent="TextAppearance.AppCompat">
        <item name="android:fontFamily">@font/my_custom_font</item>
    </style>

1 个答案:

答案 0 :(得分:0)

不要创建其他样式的fontFamily,而应该使用按钮样式,并且代码应如下所示。

<style name="ButtonStyle" parent="@style/Widget.AppCompat.Button.Borderless">
    <item name="android:textSize">@dimen/button_text_size</item>
    <item name="android:background">@drawable/button_background</item>
    <item name="android:fontFamily">@font/my_custom_font</item>
    <item name="android:textColor">?android:textColorPrimaryInverse</item>
</style>