gpt4 book ai didi

Android Studio TextView fontFamily 在主题中不起作用

转载 作者:行者123 更新时间:2023-11-29 02:30:58 25 4
gpt4 key购买 nike

我的 activity_main.xml 中有一个 TextView,我想更改它的 fontFamily 属性。它适用于 AppTheme 和 AppCompat 主题:

working

但是,在 Material 主题等其他主题中,字体系列始终设置为默认值:

not working

是主题不支持那些字体还是我做错了什么?

activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:id="@+id/time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is some text"
android:textColor="@android:color/background_light"
android:textSize="50sp"
app:fontFamily="cursive"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.223" />

</android.support.constraint.ConstraintLayout>

最佳答案

尝试在您的 xml 中同时使用 app:fontFamilyandroid:fontFamily

关于Android Studio TextView fontFamily 在主题中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49641678/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com