0

我有一个 Android 应用程序,我想将一些通用视图属性(主要是宽度和高度)存储在一个单独的 XML 文件(values.xml)中。一个例子:

<Button
    android:id="@+id/button1"
    android:layout_width="@strings/genericbuttonwidth"
    android:layout_height="wrap_content"
    android:text="Button" />

res/values/strings.xml看起来像:

<resources>
    <string name="genericbuttonwidth">50dp</string>
</resources>

Eclipse 图形布局查看器使宽度为 50dp,如 strings.xml 中给出的,但在 Android(物理)设备上运行时,它会引发异常:

Caused by: java.lang.RuntimeException: Binary XML file line #174: You must supply a layout_width attribute.

所以我想要做的事情并没有真正起作用(当我用 50dp 替换参考时,它工作得很好)。从单独的 XML 文件加载属性的任何方法或解决方法?

4

2 回答 2

2

保存在 res/values/dimens.xml 的 XML 文件:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <dimen name="textview_height">25dp</dimen>
    <dimen name="textview_width">150dp</dimen>
    <dimen name="ball_radius">30dp</dimen>
    <dimen name="font_size">16sp</dimen>
</resources>

此应用程序代码检索一个维度:Resources res = getResources(); float fontSize = res.getDimension(R.dimen.font_size); 此布局 XML 将维度应用于属性:

<TextView
    android:layout_height="@dimen/textview_height"
    android:layout_width="@dimen/textview_width"
    android:textSize="@dimen/font_size"/>
于 2012-09-04T08:24:46.570 回答
1

使用dimen资源而不是string.

http://developer.android.com/guide/topics/resources/more-resources.html#Dimension

于 2012-09-04T08:20:18.180 回答