[android-developers] XML Pull Parser Bugging Out

2010-07-17 Thread 7H3LaughingMan
I am trying to create a Forum Parsing Application that uses the XML Pull Parser to grab the HTML and then go through it and parsing it for the specific data. I managed to create one that works however when I try to create another one that is used by another Activity in the same Application it gets

Re: [android-developers] XML Pull Parser Bugging Out

2010-07-17 Thread Romain Guy
You never request the next element to be read. Your loop should contain the following statement: eventType = xpp.next(); On Sat, Jul 17, 2010 at 9:51 PM, 7H3LaughingMan austin.brk...@gmail.com wrote: I am trying to create a Forum Parsing Application that uses the XML Pull Parser to grab the