Android Studio Make Font Bigger

[Solved] Android Studio Make Font Bigger | Swift - Code Explorer | yomemimo.com
Question : adjust font scale in android studio

Answered by : light-leopard-naygcm0qque0

private fun adjustFontScale(configuration: Configuration) { if (configuration.fontScale > 0.90) { configuration.fontScale = 0.90f val metrics = resources.displayMetrics val wm = baseContext.getSystemService(WINDOW_SERVICE) as WindowManager wm.defaultDisplay.getMetrics(metrics) metrics.scaledDensity = configuration.fontScale * metrics.density baseContext.resources.updateConfiguration(configuration, metrics) } }

Source : | Last Update : Fri, 21 Jan 22

Question : android studio make font bigger

Answered by : exuberant-elk-01o520x4uk19

#click Ctrl+Shift+A, then search "font" and click on "increase font size"

Source : | Last Update : Tue, 27 Jul 21

Question : increase text size in android studio

Answered by : wandering-wallaby-o5lruf1mzv60

File -> Settings -> Appearance -> Use custom font "Size" [2022]

Source : | Last Update : Thu, 31 Mar 22

Answers related to android studio make font bigger

Code Explorer Popular Question For Swift