For example, there are identifiers @ + id / listView1 and @android : id / list

How are they read / decoded?

    1 answer 1

    The general format of the link is: @[<package_name>:]<resource_type>/<resource_name>

    @ + id / listView1 means that an identifier is created with the name listView1 in the space of the application being developed. You can access it as @id / listView1

    @android : id / list means a link to an identifier named list in android space.

    • one
      That's right) I asked myself - he answered. I add that the application can also create its own namespace for identifiers and resources, using a specially defined style. - DroidAlex