- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
作为documentation状态:
Android O lets you bundle fonts as resources by adding the font file in the res/font/ folder.
结果:
You can retrieve fonts by using the
getFont(int)
method, where you need to pass the resource identifier of the font that you want to retrieve. This method returns a Typeface object. This encodes the first of the weight or style variants of your font, if it is a font family. You can then use the Typeface.create(typeface, style) method to retrieve specific styles.Note: The TextView already does this for you.
Typeface typeface = getResources().getFont(R.font.myfont); textView.setTypeface(typeface);
不幸的是,当我使用上面的代码时,出现以下错误:
cannot resolve method 'getFont(?)'
以前我曾经做过以下事情:
Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/myfont.ttf");
但是现在,当我尝试在 assets 文件夹中创建 fonts 文件夹时,它会自动跳转到 res 文件夹中。
我正在使用 android studio 2.3。在此先感谢您的帮助。
最佳答案
使用支持库 26 中的此方法。
ResourcesCompat.getFont(context, R.font.your_font);
来源: https://developer.android.com/reference/android/support/v4/content/res/ResourcesCompat.html
关于java - 无法解析方法 'getFont(?)',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43142235/
这个问题已经有答案了: iText : Unable to print mathematical characters like ∈, ∩, ∑, ∫, ∆ √, ∠ (1 个回答) 已关闭 6 年前
作为documentation状态: Android O lets you bundle fonts as resources by adding the font file in the res/f
我正在使用 iTextPdf 5.5.3 创建 PDF/A 文档,我希望用户通过上传字体的 .ttf 文件来选择自定义字体,因为 FontFactory.getFont () 方法仅将字体名称作为字符
每次我使用 QFontDialog.getFont() 获取字体时,它都会返回相同的 QFont 对象。 font, ok = QFontDialog.getFont() print(font) if
我在使用 Raphael.js 的 print 方法创建文本时遇到了一些问题。更准确地说,print 方法需要的 getFont 方法返回一个 undefined 值。我组装了一个非常简单的 fidd
在我的程序中,我有一个函数可以创建另一个 sf::Text 字符串的轮廓,如下所示: void textDisplay::createOutline(std::vector &textDisplayV
我必须在 Android studio 中使用 uset getFont 的最低要求,这是我的 gradle 这是我使用getFont时的错误通知 最佳答案 您收到该错误的原因是 minSdkVers
本文整理了Java中org.jfree.chart.annotations.XYTextAnnotation.getFont()方法的一些代码示例,展示了XYTextAnnotation.getFon
我正在使用 Calligraphy Library通过克里斯詹克斯。今天早上突然我的项目开始抛出奇怪的错误。有人对此有任何想法吗?我还尝试查看 TintTypedArray.java:119 . gr
我有一个带有ReportViewer控件的简单WinForms应用程序。大多数情况下,它可以正常工作,但有时在ReportViewer窗口中显示无法恢复的红叉标记,或者当我滚动报表时崩溃。我找不到导致
我正在制作聊天应用程序,到目前为止一切顺利,但突然我在 android studio 3.1 中收到一个错误 No Static Method get Font。每当我打开我的应用程序时,它就会崩溃。
我正在使用 Raphaeljs,我正在尝试让 paper.print() 在 .js 文件中工作。我已经 Cufonized 字体并将 .font.js 文件导入到 html 文件中。在 html 文
如果我说: var georgia = FontFactory.GetFont("Georgia Regular", 10f); 这是行不通的。当我检查变量 georgia 的状态时,它的 Famil
我试图在 github 上上传我的工作项目,但未能上传 XML 文件并以某种方式丢失了它们,因为我以前从未使用过 github,现在当我为我的项目重新编写 XML 文件时,我面临编译器的这个错误: j
我目前正在尝试使用 Ionic 框架设置将 PayPal 集成到应用程序构建中以在 cordova 之上运行。我正在使用 [ionic-native braintree 插件][1] 进行集成。该应用
将我的 Android Studio 更新到 3.0 后,我收到 No static method getFont() 错误。我正在从事的项目在 github 上,https://github.com
我是一名优秀的程序员,十分优秀!