2

I'm struggling with HiDPI support of Android Studio 2.1.3 for Linux Mint. What I know it should be possible to enable Android Studio's HiDPI support by adding -Dhidpi=true flag to /opt/android-studio/bin/studio64.vmoptions Unfortunately it doesn't change anything on my machine, the UI is still very small.

tomrozb
  • 25,773
  • 31
  • 101
  • 122

2 Answers2

8

I had the same problem, and I did not manage to "enable" hidpi for Android Studio.

Therefore, I run Android Studio like so:

$ xrandr --dpi 192; android-studio&

Or whatever you prefer instead of 192, of course.

JonasVautherin
  • 7,297
  • 6
  • 49
  • 95
0

Android Studio 2.3 has HiDPI support out of the box

notz
  • 2,458
  • 2
  • 15
  • 11
  • 2
    It should have HiDPI support since 2.1 but it doesn't work without workarounds, like the one provided by JonesV – tomrozb Nov 29 '16 at 00:42