what is the meaning of keyword “android” and “R” which are frequently used during development.where and how are they used.
Difference between keywords android and r in android studio
R means referring to resources whether it be predefined resources or defined by you.
resources include id’s, colors, dimen’s, layouts, etc.
android is most commonly used in resources.
In XML, xmlns declares a Namespace. In fact, when you do:
The namespace has pretty much the same uses as the package name in a Java application.