0

What is the difference between:

android:id="@android:id/id_name1"

and

android:id="@+id/id_name2"

Sagar Zala
  • 4,854
  • 9
  • 34
  • 62

1 Answers1

0

The first sample references an id defined in the Android SDK itself. The second sample creates a new id in your application's namespace.

Matt Accola
  • 4,090
  • 4
  • 28
  • 37