I need to read a user input in android to process it later.
How can I do this?
In iPhone SDK I\'d do something like this:
-(IBAction)command {
Put an EditText in your UI, and call getText().toString() on it when you need the value that the user typed in.
EditText
getText().toString()