如何在android中更改默认字体大小?

时间:2013-12-30 12:15:18

标签: android font-size

我正在处理字体相关的应用程序,我需要更改系统字体大小。我在谷歌找不到任何例子。如果有人有访问系统字体的经验,请帮我解决。谢谢。

我尝试了以下代码,但它无效。

Settings.System.putFloat(getBaseContext().getContentResolver(),
                        Settings.System.FONT_SCALE, (float) 1.3);

1 个答案:

答案 0 :(得分:0)

嗯,经过大量搜索后,我发现了question,其中,Romain Guy提到这是不可能的。

正如我在评论中提到的那样,对于您所指的app,他们在说明中也提到了It may not work for all devices. Please try it and let me know (Settings > App log) if it does not work on your device. Starting from Android 4.2, this app only works on rooted devices due to Android disables 3rd party apps to change system UI configuration (color, font) unless you are using a rooted phone.

我在here找到了另一个主题,请检查这是否有助于您