我是靠谱客的博主 高高豆芽,最近开发中收集的这篇文章主要介绍android字体斜体代码,Android设置Roboto字体用粗体,斜体,常规,…(类似于自定义字体系列)...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我知道在Android应用程序中以编程方式设置自定义字体.

有没有办法为自定义字体(资产)加载字体,Android框架将使用基于粗体,斜体等的正确文件?

例如,现在我正在尝试将Roboto字体设置为某些TextView

Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/Roboto/Roboto-Regular.ttf");

textView.setTypeface(typeface);

它工作正常.但由于我将xml布局中的TextView设置为粗体,因此文本不会加粗

android:id="@+id/my_id"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_marginLeft="20dp"

android:layout_marginRight="20dp"

android:layout_marginTop="50dp"

android:textStyle="bold"

android:gravity="center"

android:text="@string/my_text"

android:textColor="@color/my_foreground"

android:textSize="24dp" />

如何从资产中正确加载字体,这将起作用?

textView.setTypeface(typeface, Typeface.BOLD);

在我的资产目录中,只有一个“字体系列”

Roboto-Black.ttf

Roboto-BlackItalic.ttf

Roboto-Bold.ttf

Roboto-BoldCondensed.ttf

Roboto-BoldCondensedItalic.ttf

Roboto-BoldItalic.ttf

Roboto-Condensed.ttf

Roboto-CondensedItalic.ttf

Roboto-Italic.ttf

Roboto-Light.ttf

Roboto-LightItalic.ttf

Roboto-Medium.ttf

Roboto-MediumItalic.ttf

Roboto-Regular.ttf

Roboto-Thin.ttf

Roboto-ThinItalic.ttf

如何在一个字体/系列中加载所有字体?

解决方法:

标签:android,fonts,typeface,font-family

来源: https://codeday.me/bug/20190621/1250873.html

最后

以上就是高高豆芽为你收集整理的android字体斜体代码,Android设置Roboto字体用粗体,斜体,常规,…(类似于自定义字体系列)...的全部内容,希望文章能够帮你解决android字体斜体代码,Android设置Roboto字体用粗体,斜体,常规,…(类似于自定义字体系列)...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部