An [email protected] represents a reference resource
1. Reference a custom resource. Format: @[package:]type/name
android:text= "@string/hello"
2. Refer to System resources. Format: @android: Type/name
Android:textcolor= "@android: color/opaque_red"
Note: In fact @android: Type/name is a subclass of @[package:]type/name
Two [email protected]* represents a non-public resource referencing the system. Format: @*android:type/name
System Resource definitions are divided between public and non-public. The declaration of public is in:
<sdk_path>\platforms\android-8\data\res\values\public.xml
@*android:type/name: can invoke all system-defined resources
@android: type/name: A resource that can only invoke the Publi property.
Note: Resources that are not declared in Public.xml are not recommended by Google.
Three.? Delegate reference topic Properties
Another resource value allows you to reference the value of a property in the current theme. This property value can only be used in style resources and XML attributes, and it allows you to change the appearance of UI elements by changing them to the standard changes provided by the current topic, rather than providing specific values. For example:
Android:textcolor= "? Android:textdisabledcolor"
Note that this is very similar to resource references, except that we use a "?" Prefix instead of "@". When you use this tag, you provide the name of the property resource, which will be looked up in the subject, so you do not need to display the declaration of that type (if the declaration is in the form of Android:attr/android:textdisabledcolor). In addition to using the identifier of this resource to query the values in the topic instead of the original resource, its naming syntax is the same as "@":? [Namespace:]type/name, this type is optional.]
Four [email protected]+ represents a resource in the creation or reference. Format: @+type/name
Meaning: "+" means that a record is added to the inner class named type in R.java. As the meaning of "@+id/button" is in the ID of the R.java file, this static inner class adds a constant named button. The constant is the identifier for the resource. If the identifier (including system resources) already exists, it indicates that the identifier is referenced. The most common use is in defining the resource ID, for example:
@+id/Resource ID name Create a new resource ID
@id/resource ID name to apply an existing defined resource ID, including the system ID
@android: ID/Resource IDs reference the system ID, which is equivalent to the @id/resource ID name
Android:id= "@+id/selectdlg"
Android:id= "@android: Id/text1"
Android:id= "@id/button3"
This article goes from http://blog.csdn.net/mingli198611/article/details/7105850, thanks to the author for sharing
The meaning of @ in the Android XML resource file