Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了问题,如果有人编辑了 android 系统的字体大小(在 Settings->Display->Font Size 中),我的应用布局不再适合。我以正常字体大小开发了我的应用程序。
我想仅为此应用程序覆盖系统设置的字体大小。
谢谢!
这在严格意义上是不可能的。任何测量sp都会考虑字体缩放。
sp
您的短期解决方案是将这些尺寸更改为dp,因为1在正常字体比例下sp等于 1 。dp
dp
话虽如此,请考虑更新您的 UI,使其在字体比例方面更加灵活,因为这对一些视力不那么敏锐的用户来说很重要。