Archive for May, 2013

Building a Mobile Employee Directory – Step 3: Save (Persist) the data into a SQLite Database & Load a ListView from a SQLite Database
For the source code relating to this post, checkout this Github repository. Continuing with the mobile employee directory example, I’ve added persistent storage with an SQLite database. MainActivity.java package com.himebaugh.employeedirectory; import java.util.List; import android.app.ListActivity; import android.database.Cursor; import android.os.AsyncTask; import android.os.Bundle; import android.support.v4.widget.SimpleCursorAdapter; import android.view.Menu; // GOAL: Build a native android Mobile Employee Directory // ** The […]