What is the meaning of (EditText) in the following snippet ?
EditText editText = (EditText) findViewById(R.id.edit_message);
I understand that it is the declaration of a new instance of class EditText...
But i'm puzzled with the (EditText) part ? What does it mean ?