First revision
So far the app is very basic. It has a main page from where you can start your ironing or view the results. It just times each of your shirts and stores the result in seconds in a SQLite database. This is the first database access stuff that I have done. It is pretty straightforward. I used the first of the Notepad tutorials as a guide. This is the ironing page. I used a Chronometer to do the timing. This is a Chronometer example from the Android site, which is useful, but does not really tell you how to get the elapsed times. This is of course what you need for any stopwatch type activity. This is how I did that. Here is the onClick() code from my Next Shirt button: @Override public void onClick(View v) { long elapsedMillis = SystemClock.elapsedRealtime() - mChronometer.getBase(); DataAccess data = new DataAccess(getApplicationContext()); data.open(); data.cr