您能否幫我理解xml屬性中「本地名稱」和「限定名稱」之間的區別? 從http://developer.android.com/reference/org/xml/sax/Attributes.html:xml屬性中「本地名稱」和「限定名稱」之間的區別
/** Look up an attribute's local name by index. */
abstract String getLocalName(int index)
/** Look up an attribute's XML qualified (prefixed) name by index. */
abstract String getQName(int index)
在這個例子中,
<anelement attr1="test" attr2="test2"> </anelement>
會有什麼區別?
Skeet的&你的答案包括完美的答案。 –