我有一个这样的 xml 文档:
<sample xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="structure">
<film>
<!-- The act1, act2 and act3 play for 27000 milli seconds each-->
<sequence id="film1">
<condition time="<=27000"> PLAY </condition>
<condition time=">27000"> STOP </condition>
</sequence>
<sequence id="film2">
<condition time="<=27000"> PLAY </condition>
<condition time=">27000"> STOP </condition>
</sequence>
</film>
</sample>
我有这个时间属性和一些硬编码值。我有大约 20 个标签“电影”,我不想在所有 20 部电影中硬编码这些数字。请让我知道是否有办法声明一些常量并使用“LONG”、“SHORT”之类的东西来代替这些数字