Just got started w/Android on my Win 7 box after a hiatus following my first attempt.
In playing with the XML layout I see that the referencing convention defined are of the following forms
- @[+][package:]type:name
- ?[package:][type:]name
I know name is probably the identifier for the resource referenced, and the rest of each string is probably a qualifier E.g. @+id/myTextView
Here, myTextView is a name defined in another file in the same package (I think)
Specifically, what do the symbols ‘+’, and ‘?’ signify?
From Android’s documentation: