Can anyone explain me this statement below.
android:id="@+id/label
what does it mean by the plus sign I am going through the tutorial on android.
+id/label means that your resource will have an id value = label and that
label belongs to your application's name space.
There are many resources bundled with
android.jar file and when referring to these resources you would say
android:id = "@android:id/list" which means your resource will have an id value = list and that this value belongs to
android name space.
Refer
this.