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 instead of the user’s id?
I’ve found some code examples with the @android:id/xyz attribute set instead of @+id/xyz .
Share
@android:idindicates that the id is in theAndroid.r.id namespace. So this is useful for ListActivities where they look forAndroid.r.id.listby default.