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&あなたの答えは完璧な答えで構成されています。 –