0

我有这个程序显示例如 3 EditTexts,它从名为 integers 的 xml 文件中获取这个值“3”。我现在想要的是用户可以更改此值。

这是我现在使用的代码:

int max = this.getResources().getInteger(R.integer.maxValue);

正如我所说,它目前EditText在屏幕上绘制 3,但我希望用户能够通过设置更改此数量。

这是我的 integers.xml

<resources>

    <integer name="maxValue">3</integer>

</resources>

那么如何更改 xml 文件中的值呢?

4

2 回答 2

0

If you want the user to input any number then make a variable to hold that number and ask the user to input a number.

于 2012-08-02T20:38:04.367 回答
0

为什么不直接从用户而不是资源那里获得价值?

于 2012-08-02T20:34:52.563 回答