我正在尝试强制我的XSD文件中的属性与Android项目的有效类匹配。
我想做类似的事情:
<xs:element name="model">
<xs:complexType>
<xs:attribute name="parentClass" type="xs:string"/>
<xs:attribute name="childClass" type="xs:string"/>
</xs:complexType>
</xs:element>
我应该使用什么而不是xs:string
?