Android从单独的XML加载布局参数

时间:2012-09-04 08:18:42

标签: android xml layout

我有一个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文件加载属性的任何方法或解决方法?

2 个答案:

答案 0 :(得分: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>

此应用程序代码检索维度: 资源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"/>

答案 1 :(得分:1)