I\'ve read through much of the Android documentation and I\'ve yet to find any statement that says what an id value prefix of \"@+id\" means. I know what \"@string\" and variat
The plus sign indicates that you are creating a new ID which does not exist. eg."@+id/xyz" . If you write "@id/xyz" , it indicates that you are referencing the View from another part of layout.