Huge size of an unused font in Android Studio

As the title says, I accidentally set the font size to something gigantic in the Android studio, and now it is completely unusable. In the best case, I see the vertices of several letters after loading the program, so I can’t even return to the options to reduce the font size. Viewing the configuration files did not give me joy, so I'm looking for a way to configure parameters from outside the program itself or delete all user settings and restart without completely deleting everything. I tried uninstalling and reinstalling, which worked for a short while, and then the font returned from normal to huge.

** Editing: I managed to fix it (at least for now) by moving the .AndroidStudio1.2 file from my users folder and launching Android Studio, again allowing it to reset.

+6
source share
2 answers

The way to fix this is quite simple.

Go to C: / Users / <your account> /. AndroidStudio / config / options /

Open ui.Inf.xml and change the FONT_SIZE property to the appropriate value (12 by default iirc)

+1
source

Outside of Android Studio, find the location of the Project folder, go into it and go to the res>layout folders, find your XML layout, open and edit the layout in notepad, and you can resize outside of Android Studio

Since you seem to be in a situation, follow these steps:

Ctrl + Alt + S

up arrow (x7)

right arrow (x1)

down arrow (x1)

tab (x4)

backspace (x5)

type "12"

press enter

0
source

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


All Articles