I\'m retrieving custom Resource IDs from a custom xml view type. I\'m asked to specify a default int value for the retrieval and was wondering what is the range of IDs? Are they
According to the documentation, Resources.getIdentifier()
Returns 0 if no such resource was found. (0 is not a valid resource ID.)
so you can use 0.