Muhammad Shafrizal
Muhammad Shafrizal

Reputation: 28

Android Studio weird installation language

Weird Language

enter image description here

Hello guys, as you can see the image, My Android Studio looking weird. I dont understand the language. How to fix this issue?

There is similar question about it, Weird Text Android Studio, but it doesnt fix my problem. I dont have any program like visual code or bizagi studio

Upvotes: 0

Views: 592

Answers (2)

Rupesh Kumar
Rupesh Kumar

Reputation: 21

  1. Go to C:\Users{username}\AndroidStudio\config\options
  2. Open ui.inf.xml file in any editor
  3. Add these line of code if it doesn't exist:
<option name="FONT_FACE" value="Consolas" /> 
<option name="HIDE_TOOL_STRIPES" value="false" /> 
<option name="SHOW_MAIN_TOOLBAR" value="true" /> 
<option name="OVERRIDE_NONIDEA_LAF_FONTS" value="true"/>
  1. Save and restart Android Studio IDE

Upvotes: 0

Sneh Pandya
Sneh Pandya

Reputation: 8483

  1. Go to C:\Users\{username}\AndroidStudio\config\options
  2. Open ui.inf.xml file in editor like Notepad or Notepad++
  3. Add this line of code if it doesn't exist:

Android Studio Language

  1. Save the changes and restart Android Studio

Upvotes: 1

Related Questions