Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set toolbar icons size in Android Studio 3.0.1

I've just installed an update to android studio and now I see version 3.0.1 When I look to a toolbar I see that icons became two times smaller than usual.

enter image description here

Is it possible to make them bigger as it was before?

like image 964
Vitalii Avatar asked Nov 20 '17 20:11

Vitalii


2 Answers

As said in this comment it is an Intended Behavior in version 3.0. But this behavior can be reverted by setting the system property hidpi.allow.fractional to true in file ~AndroidStudioHOME\idea.properties and restart Android Studio.

You can open and edit this file directly from IDE by Help | Edit Custom Properties menu:

hidpi.allow.fractional=true

P.S. But, for example, I'm already used to this size and it seems to me quite comfortable. There is more space for text, especially at 13 inches laptop.

Update Fixed in Android Studio 3.1. Icons become bigger as earlier

like image 95
eugeneek Avatar answered Oct 16 '22 17:10

eugeneek


Have the same issue after updating to 3.0.1. As of Google Issue Tracker, it seems like a known issue & it is in assigned state. For a temporary fix, we can adjust the UI font of Android Studio from settings as below.

  1. File -> Settings
  2. Appearance & Behavior -> Appearance
  3. Under UI Options, select Override default fonts
  4. Set the size (I am setting size 24 to make the icons & text bigger)

Note : The above steps will make the Android Studio UI ugly but until a patch is released, we might need to adjust to this.

like image 23
sJy Avatar answered Oct 16 '22 18:10

sJy