我想按原样加载值。 我有两个 dimension.xml 文件,/res/values/dimension.xml 中的一个和 /res/values-sw360dp/dimension.xml 中的另一个.
从源代码我想做类似的事情
getResources().getDimension(R.dimen.tutorial_cross_marginTop);
这可行,但我得到的值乘以屏幕密度因子(hdpi 为 1.5,xhdpi 为 2.0 等)。
我也尝试过
getResources().getString(R.dimen.tutorial_cross_marginTop);
这原则上可行,但我得到一个以“dip”结尾的字符串......
Best Answer-推荐答案 strong>
在我的 dimens.xml 我有 <dimen name="test">48dp</dimen>
在代码中如果我这样做int valueInPixels = (int) getResources().getDimension(R.dimen.test)
这将返回 72 作为文档状态乘以当前手机的密度(在我的情况下为 48dp x 1.5) 完全按照文档状态:
Retrieve a dimensional for a particular resource ID. Unit conversions
are based on the current DisplayMetrics associated with the resources.
因此,如果您想要精确的 dp 值,就像在 xml 中一样,只需将其除以 DisplayMetrics 密度int dp = (int) (getResources().getDimension(R.dimen.test) / getResources().getDisplayMetrics().density);
dp现在是48
关于android - 从源代码的 res/values/dimension.xml 加载维度值,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11121028/
|