Tag: Example Java Code

Building a Mobile Employee Directory – Step 2: Load data into the ListActivity from an XML file via XmlParser
For the source code relating to this post, checkout this Github repository. Parsing XML data with XmlPullParser into an Android ListView. After reviewing the SAX (Simple API for XML) Parser, the DOM (Document Object Model) Parser and the XmlPullParser. I’ve decided to use the XmlPullParser because it is supposed to be the fastest. I have not tried […]

Android Tutorial: Wrapping a Mobile Website with WebView
It may not be the most exciting App, but my first App in the Google Play store wraps a mobile real estate website. My App is no longer in the Google Play store, but you can view a photo of the end product at the bottom of this page The following code demonstrates a simple […]

Android Tutorial: Calculator App Example with Java Code
For the source code relating to this post, checkout this Github repository. A year ago I started going through the CS 193P iPhone Application Development. The following code is a simple Android Calculator that I have converted from the work I did for the above online class. It was my starting point into android and it’s […]