Есть один xml лейаут для андроида, вот этот:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:background="?docBackground"
android:layout_height="match_parent">
<NonFocusableScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<EditText
android:id="@+id/surnameTxt"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="70"
android:inputType="textCapSentences"
android:hint="Фамилия"
/>
</NonFocusableScrollView>
</LinearLayout>
был написан xsl такой:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="EditText/@hint">
<xsl:attribute name="hint" namespace="android"><xsl:copy-of select="@id"/></xsl:attribute>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
xmlns:ns_1="android" android:id="@+id/surnameTxt" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="70" android:inputType="textCapSentences" ns_1:hint=""