I have followed multiple online tutorials on how to set up a SAX XML parser for the Android platform but none of them seem to work! Whats the problem? Heres my code:Imports:\[code\]import java.net.URL;import java.util.ArrayList;import java.util.List;import javax.xml.parsers.SAXParser;import javax.xml.parsers.SAXParserFactory;import org.xml.sax.Attributes;import org.xml.sax.InputSource;import org.xml.sax.SAXException;import org.xml.sax.helpers.DefaultHandler;import android.app.Activity;import android.util.Log;\[/code\]This Code is in a method that I know gets called, but why doesent logcat show "TESTING"?\[code\] try { URL XMLURL = new URL("https://gdata.youtube.com/feeds/api/videos?q=Crystallize+Lindsey+Stirling+Offical+Music+Video&orderby=relevance"); SAXParserFactory SPF = SAXParserFactory.newInstance(); SAXParser SP = SPF.newSAXParser(); DefaultHandler mainHandler = new DefaultHandler(){ @Override public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { if(localName.equals("Link")){ String possibleURL = attributes.getValue("href"); Log.i("TEST","TESTING"); } } }; SP.parse(new InputSource(XMLURL.openStream()),mainHandler); } catch (Exception e) { e.printStackTrace(); }\[/code\]Thanks for any and all help!