fontFamily 没有为阿拉伯语语言环境选择正确的自定义字体

fontFamily not picking correct custom font for Arabic locale

我需要在应用程序处于阿拉伯语模式时应用自定义字体。我在 XML 中使用 style 参数来提供自定义字体系列。

问题是自定义字体在阿拉伯语模式下没有正确加载; tt在英文模式下是正确的。

下面是我的源代码:

values/styles.xml

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

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


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

</resources>

values-ar/styles.xml

<resources>

    <style name="text_style_bold_font" parent="TextAppearance.AppCompat">
        <item name="android:fontFamily">@font/arabic_bold_font_family</item>
        <item name="android:textStyle">bold</item>
    </style>

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

</resources>

activity_main.xml

<androidx.appcompat.widget.AppCompatTextView
    android:id="@+id/textview1"
    style="@style/text_new_style_normal_font"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:padding="24dp"
    android:text="@string/register_or_login_to_your_account_to_access"
    android:textSize="25sp" />

<androidx.appcompat.widget.AppCompatTextView
    android:id="@+id/textview2"
    style="@style/text_new_style_bold_font"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:padding="24dp"
    android:text="@string/exclusive_offers_and_deals"
    android:textSize="25sp" />

我哪里错了?

每个语言环境中的样式名称必须相同。 "text_new_style_bold_font" 未定义到必须存在的 values-ar/styles.xml 中。 因此,在每个 styles.xml 文件中保留两种具有相同名称的文本样式。并确保您在布局文件中使用了正确的名称。