I\'ve found some code examples with the @android:id/xyz attribute set instead of @+id/xyz. When and why is it necessary to use Android ids in
@android:id/xyz
@+id/xyz
The plus-symbol means that the resource is new and it must be created and added to the resources in the R.java file.
R.java
Omitting the plus symbol references an already existing resource.