Differences between?
- @+id/mywidget
- @id/mywidget
- @android:id/mywidget
id inside class R(from your app)id inside class R (from your app)id inside class R (from the android.R)@+id/mywidget
Adds the id to R.java
@id/mywidget
References an existing id
@android:id/mywidget
References an id that exists in android.R.java, e.g. resources that are already provided by the framework