首页 > 解决方案 > 如何在自定义字体系列中获得粗体样式?

问题描述

我有以下自定义字体系列代码,我想为该字体设置字体粗细

abc.xml

<?xml version="1.0" encoding="utf-8"?>
<font-family
    xmlns:android="http://schemas.android.com/apk/res/android">

    <font
        android:font="@font/abc_regular"
        android:fontStyle="normal"
        android:fontWeight="400" />

    <font
        android:font="@font/abc_bold"
        android:fontStyle="normal"
        android:fontWeight="700" />
</font-family>

基本按钮.kt

open class BaseButton : AppCompatButton {

    @JvmOverloads
    constructor(
        context: Context,
        attrs: AttributeSet? = null,
        defStyleAttr: Int = 0)
            : super(context, attrs, defStyleAttr) {
        setFontFamily()
    }

    private fun setFontFamily() {
        val typeface = ResourcesCompat.getFont(context, R.font.abc)
        this.typeface = typeface
    }
}

screen_layout.xml

<com.aaa.bbb.ccc.BaseButton
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:text="Test"
    android:textStyle="bold"
    android:textFontWeight="700" />

该按钮不显示粗体文本。怎么了?

标签: android

解决方案


因为您在父构造函数中设置粗体样式后设置字体。试试这个

    private fun setFontFamily() {
        val typeface = ResourcesCompat.getFont(context, R.font.sf_pro)
        val isBold = getTypeface().isBold

        this.setTypeface(typeface, if (isBold) Typeface.BOLD else Typeface.NORMAL)
    }

推荐阅读