Font size after upgrading to Android Studio 1.4

This morning I upgraded to Android Studio 1.4, and the font size of my editor is much larger than before. I am using the Darkula scheme. When I check the configuration of the Darcula schema, it uses the Monospaced font with a size of 12.

Anyone else having the same problem, or is it just me?

+5
source share
3 answers

I managed to fix the problem by simply creating a copy of the circuit (by clicking Save As ...)

With the new circuit (with the same configuration as before, only the circuit is different) the problem is solved.

+5
source

I had a similar problem when I upgraded to Android Studio 1.4 . My font was broken. I thought about this due to an OS update ( OS X El Capitan ). After trying a lot of different things, I found that this is a problem with the JDK.

Now you can use the higher version (> 1.6) of the JDK. You just need to install JDK 1.6, which by default is intended for rendering fonts in Android Studio . If you are using OS X, then download JDK 1.6 from here and install it. To check which version of java you are using, run this command.

cd /Library/Java/JavaVirtualMachines && ls -l 

After installing JDK 1.6. Restart Android Studio. There you will see your beautiful smooth font. Greetings.

+2
source

If you have problems with the terminal font, try this. Ctr + shift + A followed by [increase / decrease font size]

0
source

Source: https://habr.com/ru/post/1232679/


All Articles