我正在尝试将单个属性转换为元素。我使用的 XSL 是:
<xsl:template match="TextView/@*">
<xsl:element name="{name()}">
<xsl:value-of select="."/>
</xsl:element>
</xsl:template>
我的xml:
<TextView
android:id="@+id/ti"
style="@style/HTxt"
android:text="@string/ti"
custom:attribute="name" />
上面的 XSL 将所有属性转换为元素。但我只想转换“custom:attribute”而忽略其他的。我怎样才能做到这一点?提前致谢。