nikkumang
nikkumang

Reputation: 1635

Changing Android Studio's toolbar icons to larger ones and adding labels

enter image description here

I'd like to make the IDE's toolbar icons larger and add labels..

Is there some way to do this? I've tried Google but it is returning results for toolbars on Android devices, not Android Studio. I also tried looking at IntelliJ resources but no luck there either.

Upvotes: 2

Views: 477

Answers (2)

cb4
cb4

Reputation: 9363

2022 UPDATE

This info (hinted at on SO) is from jetbrains support for IntelliJ. It may also apply to Android Studio. Scaling of UI elements is controlled by two factors:

  1. HiDPI mode:

    a. JRE-managed: Help | Edit Custom VM Options set -Dsun.java2d.uiScale.enabled=true

    b. IDE-mananaged: set with Dsun.java2d.uiScale.enabled=false

  2. Scale Factor:

    a. User scale factor: default setting is based on the font size in Settings > Appearance and Behavior > Appearance > Use custom font. Increase it by setting scale > 1.0 with this VM option: -Dide.ui.scale=1.25.

    b. System scale factor: default is base on OS; override with this VM option: -Dsun.java2d.uiScale=1.75.

To see your current settings: Help | Find Action: and type Show HiDPI Info.

Upvotes: 0

OneCricketeer
OneCricketeer

Reputation: 191738

I'm going to say you can't make them larger...

Configuring Menus and Toolbars

The size of the toolbar icons should be 16x16

Upvotes: 1

Related Questions