Android Studio字体模糊

时间:2016-02-23 14:37:22

标签: android-studio

我在我的Mac中安装了Android Studio和Intellij,但是Intellij上的字体看起来还不错,但Android Studio看起来很模糊,尝试了很多设置并重新安装它仍然无法正常工作,有没有人遇到同样的问题?

1 个答案:

答案 0 :(得分:0)

这是因为Oracle JDK7 / 8没有Apple JDK 6的子像素抗锯齿。

你可以

1)像这样的链接安装Apple JDK说:

http://tools.android.com/tech-docs/configuration/osx-jdk

2)或者,由于您安装了AppCode / IntelliJ,它们与修改过的OpenJDK捆绑在一起,修复了亚像素抗锯齿问题。

您可以在终端中执行此操作:

export STUDIO_JDK="/Applications/IntelliJ IDEA 15 EAP.app/Contents/jre/jdk/"
open /Applications/Android\ Studio.app

和Android Studio将使用与IntelliJ捆绑在一起的JDK。

3)如果每次都不想打开终端,只需将STUDIO_JDK设置为用户的环境变量

将此文件放在〜/ Library / LaunchAgents:

下的studio_jdk.plist中
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  <plist version="1.0">
  <dict>
  <key>Label</key>
  <string>setenv.STUDIO_JDK</string>
  <key>ProgramArguments</key>
  <array>
    <string>/bin/launchctl</string>
    <string>setenv</string>
    <string>STUDIO_JDK</string>
    <string>/Applications/IntelliJ\ IDEA\ 15\ EAP.app/Contents/jre/jdk/</string>
  </array>
  <key>RunAtLoad</key>
  <true/>
  <key>ServiceIPC</key>
  <false/>
</dict>
</plist>

退出并登录,应该有效