Android examples for XML:XML Attribute
get XML Element Int Attribute
//package com.java2s; import org.w3c.dom.Node; public class Main { public static int getElementIntAttr(Node element, String attrName) { String attrValue = getElementAttr(element, attrName); if (attrValue != null) { return Integer.parseInt(attrValue); }/*w w w . j ava 2 s .c om*/ return 0; } public static String getElementAttr(Node element, String attrName) { for (int i = 0; i < element.getAttributes().getLength(); i++) { Node child = element.getAttributes().item(i); if (child.getNodeName().equals(attrName)) { return child.getNodeValue(); } } return null; } }