我需要从服务器动态加载xml布局. LayoutInflater具有使用XmlPullParser的inflate方法.我试过了,但它不起作用.
查看Android源代码,结果发现这些inflate方法是使用XmlResourceParser调用的. Android使用的实现是XmlBlock.Parser,但这不是公共API.
我可以使用XmlResourceParser公共实现吗?
解决方法
您可以使用传统的XmlPullParser,如
Android documentation中所述:
InputStream yourRemoteLayout = ...; XmlPullParserFactory factory = XmlPullParserFactory.newInstance(); XmlPullParser parser = factory.newPullParser(); parser.setInput(yourRemoteLayout,"someEncoding"); AttributeSet attributes = Xml.asAttributeSet(parser);
有关详细信息,请参阅XmlPullParser documentation中的说明.
编辑:从LayoutInflater#inflate()文档:
Important 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.
我想,如果Android自己只依赖于预处理资源,那么也许你应该自己实现LayoutInflater.Factory2.