André wrote: > string3 is a string have have read from a file on the sdcard.
Then what do you think getString() is going to do for you? That is for string resources. If string3 is a String variable and you want the contents of that String variable to go into your EditText, just call setText(string3). -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Beginning Android_ from Apress Now Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" 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-developers?hl=en

