Mauricio wrote: > If you want to have text on the screen that can be changed by the > program, could you create a text field as a resource and then change > its content in the code?
It is unclear what you are asking here, so I will try a few answers and hope I get lucky: -- You can have a string resource in your application -- You can set the text of a TextView from a string resource in your application -- You can set the text of a TextView from some other string you obtain (e.g., from user input, from the Internet) -- You cannot modify the string resource in your application, except by publishing an update to the application itself -- You can have your own smarts to look to see if you have a cached version of the string and use it for your TextView, and if you do not have a cached version of the string you can use the string resource -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Warescription: Three Android Books, Plus Updates, One Low Price! -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android 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

