What is the diffirence between the
@id/and@+/id?
As in the @+id/ : The + (plus) symbol indicates that we are creating the new resource name and it must be created and added in to our R.java file but what about the @id/? As from the documentation of ID when referencing an Android resource ID, you do not need the plus-symbol, but must add the android package namespace, like so:
android:id="@android:id/list"
But as in the below image eclipse dosen't suggesting me any kind of @android:id/.

Are
@id/and@android:idthe same?
I would really appreciate any of your ideas with an elaborate example.

@+id, @id and @android in Android– jamolkhon Nov 12 '12 at 12:49