@ in AndroidManifest.xml file
- by C.W.Holeman II
From the O'Reilly book "Android Application Development " by Rick Rogers, John Lombardo, Zigurd Mednieks & Blake Meike:
page 23:
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
page 44:
<application android:icon="@drawable/icon2">
What is the meaning of the "@" in each of the above fragments?