Very little of the layout inflation is done at runtime. As hinted in the LayoutInflator API docs:
For performance reasons, view
inflation relies heavily on
pre-processing of XML files that is
done at build time. Therefore, it is
not currently possible to use
LayoutInflater with an XmlPullParser
over a plain XML file at runtime
If you take a look at the source, many of the views are pulled from a hash map based on their XML tag.
In answer to your question of whether I have benchmarked the inflater, I have to say no. Personally I find the idea of benchmarking the layout inflater in Android for your app to be the equivalent of benchmarking the DOM parser in Firefox for your website. I don't think the exercise is pointless, but you should have a much better reason than "my activity layout is too complicated for the inflater"...
If you require a dynamically generated layout, you would be best off creating it programmatically. If your view is simply taking a long time to inflate, you should simplify your view XML.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…