ここに私のXSLがあります:
<xsl:template match="ImageView" >
<view id ="3" src="{@src}" >
<xsl:element name="form">
<xsl:value-of select="@form"/>
</xsl:element>
</view>
</xsl:template>
<xsl:template match="TextView" >
<view id ="5" src="{@src}" >
<xsl:element name="form">
<xsl:value-of select="@form"/>
</xsl:element>
</view>
</xsl:template>
私の場合、一般的なテンプレートを使用できるかどうかを知りたいですか? はいの場合、どのように使用できますか? 前もって感謝します。
編集:
私のXML:
<ImageView
android:id="@+id/3"
android:src="@drawable/icon"
custom:form="SOME_VALUE" />
<TextView
android:id="@+id/5"
android:src="@drawable/icon"
custom:form="SOME_VALUE" />
私の期待される結果は次のようになります。
<ImageView >
<view id="3" src="@drawable/icon">
<form> SOME_VALUE</form>
</view>
</ImageView>
について<TextView>
も同様です。同じ値を使用しsrc
ますcustom:form
。だけid
が異なります。