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.
我正在使用 dimen.xml 来支持多种屏幕尺寸。
如何访问文件并从代码中获取维度以便在应用程序中使用?
约夫
您可以使用以下内容:
float yourDimen = getResources().getDimension(R.dimen.your_dimen_name);
是的,只需创建具有不同限定符的不同值文件夹,例如 res/values-320x480/ ,您可以使用此链接和链接2中的提及
Resources res = getResources(); float fontSize = res.getDimension(R.dimen.font_size);