Studio迁移到较高分辨率的显示器时

Studio迁移到较高分辨率的显示器时

本文介绍了当我将Android Studio迁移到较高分辨率的显示器时,文本模糊的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有什么方法可以更改Android Studio的分辨率?最近,我将Android Studio从rMBP 13'迁移到rMBP 15',文本模糊.我试图更改其分辨率以进行修复,但没有办法.你们以前见过这个吗?

is there any way I can change the resolution of Android Studio? recently I migrate my Android Studio from rMBP 13' to rMBP 15' and the text is blurry. I tried to change its resolution hoping to fix it but found no way to do. do you guys met with this before?

推荐答案

在MacOS上,IntelliJ和Android Studio存在一个已知问题,即只有Apple的JDK会在渲染中进行适当的亚像素抗锯齿.如果您使用的是Oracle JDK,则渲染效果不佳.

There's a known issue with IntelliJ and Android Studio on MacOS that only Apple's JDK does proper subpixel antialiasing in its rendering. If you're using an Oracle JDK, then the rendering is not as good.

不幸的是,这意味着唯一具有良好渲染效果的Java版本是1.6; Oracle选择了MacOS对JDK 1.7和1.8的支持.

Unfortunately, this means that the only Java version with good rendering is 1.6; Oracle picked up MacOS support for JDK 1.7 and 1.8.

好消息是,您不必使用与实际构建时相同的JDK来运行Android Studio;如果您安装了Apple的JDK 1.6,则可以使用它运行Android Studio,但是可以配置Java 1.7进行编译;后者是通过项目结构"对话框配置的.

The good news is that you don't have to use the same JDK to run Android Studio as what you actually use to build; if you have Apple's JDK 1.6 installed, you can use it to run Android Studio, but you can configure Java 1.7 to build with; the latter you configure via the Project Structure dialog.

您可以在IntelliJ的错误跟踪器中找到相关的错误,网址为 https://youtrack.jetbrains.com/issue/IDEA-117324

You can find the relevant bug in IntelliJ's bug tracker at https://youtrack.jetbrains.com/issue/IDEA-117324

这篇关于当我将Android Studio迁移到较高分辨率的显示器时,文本模糊的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 22:08