[Solved] New to android and need an explanation about @+id/edit_message [closed]


This means you are creating a reference for the EditText so that it can be used in another View, layout file, or in your Java code.

To me, it is very much like declaring a variable in your code.

String ggjon = "New to android and need an explanation"; 

The difference between using @+id/edit_message and @id/edit_message is declaration vs. referencing an already declared View.

solved New to android and need an explanation about @+id/edit_message [closed]