> is there anyway that these two arrays can be stored on the device and > accessed later? the option of using SQL seemed a little to extensive > since the data is just a simple array.
You can write them to a file using standard Java I/O. If you use XML or JSON as your data format, Android has built-in parsers to help you read them back in. Or, read and write them in binary format. See Context and openFileOutput() to get an OutputStream on a file in your application's private data store. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 2.0 Available! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

