有人可以帮我用Textview
中的自定义字体为Android kotlin
定义自定义类吗?
答案 0 :(得分:3)
在“ res ”文件夹内创建一个文件夹“ font ”并复制字体
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/muli_font"
/>
以编程方式
view.setTypeface(ResourcesCompat.getFont(context, R.font.muli_font))
您可以从here
下载“ .ttf ”字体答案 1 :(得分:0)
Follow following steps to set custom font:-
// Set your font as you want
val typeface = Typeface.createFromAsset(assets, "baamini.ttf")
// Set Your test
txtMessage.text = "Hello world"
// Set the typeface
txtMessage.typeface = typeface