I want to parse it through SAX Parser and the load the image through url and pass it to the next activity to show. But am failing to do so if any can help me out or give me some reusable code then it would be grateful. here is my xml file. Here is my parsed data class don't to add items to arraylist. PLease help.
public class ParseData extends DefaultHandler
{
boolean title , cost , pubDate , link = false;
private String temp = "";
ArrayList<String> arrtitle = new ArrayList<String>();
ArrayList<String> arrcost = new ArrayList<String>();
ArrayList<String> arrpubDate = new ArrayList<String>();
ArrayList<String> arrlink = new ArrayList<String>();
//---------START ELEMENT----------//
@Override
public void startElement(String uri , String localName , String qName , Attributes attributes) throws SAXException
{
super.startElement(uri, localName, qName, attributes);
if(localName.equalsIgnoreCase("title"))
{
title = true;
}else if(localName.equalsIgnoreCase("cost"))
{
cost = true;
}else if(localName.equalsIgnoreCase("pubDate"))
{
pubDate = true;
}else if(localName.equalsIgnoreCase("link"))
{
link = true;
}
}
//--------END ELEMENT----------//
@Override
public void endElement(String uri , String localName , String qName) throws SAXException
{
super.endElement(uri, localName, qName);
if(localName.equalsIgnoreCase("title"))
{
title = false;
}else if(localName.equalsIgnoreCase("cost"))
{
cost = false;
}else if(localName.equalsIgnoreCase("pubDate"))
{
pubDate = false;
}else if(localName.equalsIgnoreCase("link"))
link = false;
}
@Override
public void characters(char[] ch, int start, int length)throws SAXException
{
super.characters(ch, start, length);
if(title)
{
}
if(cost)
{
}
if(pubDate)
{
}
if(link)
{
}
}
}