Android Studio上的Inconsolata字体

时间:2014-06-30 11:14:19

标签: windows fonts intellij-idea antialiasing

我想在Windows上的intelliJ编辑器(Android Studio)上使用Inconsolata字体,但它看起来很乱。

我设法通过在studio.exe.vmoptions上添加一些抗锯齿选项来加载inconsolata。我刚刚添加了这些选项

-Dawt.useSystemAAFontSettings=on
-Dswing.aatext=true
-Dsun.java2d.xrender=true

现在字体加载但看起来太糟糕了。实际上这个ide上的任何字体看起来都很糟糕。这是SublimeText 和Android Studio

上相同字体的屏幕截图

任何人都知道您是否可以在基于IntelliJ的编辑器上使用此字体,或者是否存在与此字体相关的一些问题?

1 个答案:

答案 0 :(得分:0)

我们可以简单地使用谷歌字体它很容易实现。只有你必须遵循这些步骤。

步骤1)打开项目的layout.xml和属性中文本视图的选择字体系列(附上参考屏幕截图) enter image description here

步骤2)如果您的字体不存在,则在字体系列中选择更多字体..选项。然后你会看到一个新窗口会打开,在那里你可以输入你需要的字体&从该列表中选择所需的字体,即常规,粗体,斜体等。如下图所示。

enter image description here

enter image description here

步骤3)然后您将观察到将在/ res文件夹中自动生成的字体文件夹,其中包含您选择的字体xml文件 enter image description here

然后你可以直接在xml中使用这个字体系列作为

      android:fontFamily="@font/inconsolata"

enter image description here