Dan Armendariz Computer Science E-76 Notes on source code for lecture 5. ///////////// // Intents // ///////////// Intents04 (from lecture 4 source) - Using sound resources by playing, pausing, restarting, and responding to completed sound. Intents05 - Creating an options menu; user can activate by clicking MENU key on device. Intents06 - Using Intents to start a second Activity Intents07 - Requesting and starting another app's activity (eg, maps, SMS, email, phone) from your own. Intents08 - Combining many previous examples into a photo gallery app; multiple activities, resources, passing data via intents. ///////////// // Storage // ///////////// Storage01 - Saving simple state using Preferences. Storage02 - Saving simple state and data among multiple activities in the same application using SharedPreferences.