我想按原样加载值。 我有两个dimension.xml文件,一个在/res/values/dimension.xml中,另一个在/res/values-sw360dp/dimension.xml中。

从源代码我想做的事情

getResources().getDimension(R.dimen.tutorial_cross_marginTop);

这是可行的,但我得到的值乘以屏幕密度因子(1.5为hdpi, 2.0为xhdpi,等等)。

我也试着去做

getResources().getString(R.dimen.tutorial_cross_marginTop);

这将在原则上工作,但我得到了一个以“dip”结尾的字符串…


当前回答

如果你只是想动态改变字体大小,那么你可以:

textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, resources.getDimension(R.dimen.tutorial_cross_marginTop))

正如@achie的回答,你可以像这样从dimensions .xml中获取dp:

val dpValue = (resources.getDimension(R.dimen.tutorial_cross_marginTop)/ resources.displayMetrics.density).toInt()

或者得到这样的sp

val spValue = (resources.getDimension(R.dimen.font_size)/ resources.displayMetrics.scaledDensity).toInt()

关于Resources.java #{getDimension}

    /**
     * Retrieve a dimensional for a particular resource ID.  Unit 
     * conversions are based on the current {@link DisplayMetrics} associated
     * with the resources.
     * 
     * @param id The desired resource identifier, as generated by the aapt
     *           tool. This integer encodes the package, type, and resource
     *           entry. The value 0 is an invalid identifier.
     * 
     * @return Resource dimension value multiplied by the appropriate 
     * metric.
     * 
     * @throws NotFoundException Throws NotFoundException if the given ID does not exist.
     *
     * @see #getDimensionPixelOffset
     * @see #getDimensionPixelSize
     */

资源维度值乘以相应的值

其他回答

对于那些只需要在资源中保存一些int值的人,您可以执行以下操作。

integers.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <integer name="default_value">100</integer>
</resources> 

Code

int defaultValue = getResources().getInteger(R.integer.default_value);

你可以写整数在xml文件也.. 你看过这个吗? http://developer.android.com/guide/topics/resources/more-resources.html整数? 使用as。

 context.getResources().getInteger(R.integer.height_pop);

我为此用kotlin编写了两个helper函数

/**
 * Gets the float value defined in dimens
 * Define float value as following
 * Example:
 * <item name="example" format="float" type="dimen">1.0</item>
 */
fun Resources.getFloatDimension(dimensResourceId: Int): Float {
    val outValue = TypedValue()
    this.getValue(dimensResourceId, outValue, true)
    return outValue.float
}

/**
 * Gets the dp value defined in dimens
 * Example:
 * <dimen name="example">12dp</dimen>
 *
 * Will return 12
 */
fun Resources.getDimensionInDp(dimensResourceId: Int): Int {
    return (getDimension(dimensResourceId) / displayMetrics.density).toInt()
}

你可以使用getDimensionPixelOffset()而不是getDimension,所以你不必强制转换为int。

int valueInPixels = getResources().getDimensionPixelOffset(R.dimen.test)

使用Kotlin扩展

您可以添加一个扩展来简化这个过程。它允许你只调用context.dp(r.d emen。tutorial_cross_marginTop)来获取Float值

fun Context.px(@DimenRes dimen: Int): Int = resources.getDimension(dimen).toInt()

fun Context.dp(@DimenRes dimen: Int): Float = px(dimen) / resources.displayMetrics.density

如果你想在没有上下文的情况下处理它,你可以使用Resources.getSystem():

val Int.dp get() = this / Resources.getSystem().displayMetrics.density // Float

val Int.px get() = (this * Resources.getSystem().displayMetrics.density).toInt()

例如,在xhdpi设备上,使用24。Dp得到12.0或12。Px得到24