Android studio always garbled

江枫思渺然 提交于 2021-02-07 18:49:09

问题


I have change the encode to UTF-8,so I got this problem,who can help me,I reinstalled it twice,but android studio1.4 Always garbled


回答1:


You encountered this question because the font you selected is not support the displayed text in your IDE. You need to change the font of Android Studio IDE.

Which you are changing is the file encoding, It only changes the file encoding format, and have no relationship with the problem you're facing.

And change the font in the Setting->Appearance->Override default fonts:




回答2:


In my case I couldn't get past the splash screen for Android Studio. It was all garbled and I didn't know what button to press. Turns out it was a non-standard font set-up as a default in windows. The following REG file corrected it

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
"Segoe UI (TrueType)"="segoeui.ttf"
"Segoe UI Bold (TrueType)"="segoeuib.ttf"
"Segoe UI Bold Italic (TrueType)"="segoeuiz.ttf"
"Segoe UI Italic (TrueType)"="segoeuii.ttf"
"Segoe UI Light (TrueType)"="segoeuil.ttf"
"Segoe UI Semibold (TrueType)"="seguisb.ttf"
"Segoe UI Symbol (TrueType)"="seguisym.ttf"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
"Segoe UI"=-


来源:https://stackoverflow.com/questions/33405663/android-studio-always-garbled

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!