Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 InputStream 加载字体?
我正在使用 classLoader 到资源,它会返回一个 Inputstream,现在如何将它传递给 Typeface?
我试过这些方法:
font = Typeface.createFromFile(line); //File path font = Typeface.createFromFile(line);//String path
但是他们两个都行不通。
还有其他方法可以实现吗?
您将得到的最接近的是将流保存到(临时)文件,并将该文件传递给方法。