I\'ve develop android application, and one question.
As you know, When we use LiveActivity, we must specify @id/android:list for ListView ID.
But, When I us
Resource IDs in Android are specific to a package (which is good, or else you'd have lots of conflicts if your app is dealing with several packages at the same time).
@+id/list will create a resource ID in your app (=your package) with the name "list" and give it a unique ID. In code, that would be R.id.list.
@android:id/list will use the ID "list" from the package android (which, in code, would be android.R.id.list.