检测Android上是否启用了"大文本"辅助功能选项

Gal*_*lal 15 android accessibility android-a11y

如何以编程方式检测Android上是否启用了"大文本"辅助功能选项?

nan*_*esh 29

如果设置了大文本,android会更改字体比例,因此您可以使用

Configuration c = getResources().getConfiguration();
float scale = c.fontScale;
Run Code Online (Sandbox Code Playgroud)

如果scale大于1则为大文本.