Android Application That Receives Xml Files And Renders Them
I was wondering if it was possible to run an application on Android that will receive XML files during runtime, where these newly received XML files will then be rendered to the sc
Solution 1:
It will then display on screen the XML data using Android rendering (it should render it as if home_layout.xml was in the res folder)
LayoutInflater
does not support anything but layout resources. You would need to write your own layout inflation logic from scratch. Given that you create your desired View
hierarchy from the XML, the actual rendering would be no different than if the layout had been inflated from a resource.
Post a Comment for "Android Application That Receives Xml Files And Renders Them"