android-pullparser

Store static data in Android - custom resource?

I'm new to Android development, and I've been playing around with it a bit. I was trying to create a program that has a small database-like collection of never-changing data. In C#, my currently best language, I'd use a List of a custom class and serialize that to an xml file, then read that into my application at runtime. I found the...

Android - Pull Parser

Hello all, i am having one xml file and i want to parse it to get Student-ids and student-names only. <students> <student> <id type="integer">101</id> <name>James</name> <degree> <id type="integer">1978271</id> <name>SCJP</name> </degree> </student> <s...