Does LayoutInflater loads xml layout resource every time when we load view using it?
View view = LayoutInflater.from(context).inflate(R.layout.resource, null);
For example, if I want to create 100 views with the same layout id, will it parse 100 times the same XML file or there is some android framework's cache system?