Is it possible to load the XML layout file of activity from the resources stored in the device (in some parts of the DB or resources) and Load that dynamically when that activity starts? Send this idea from a web service to a device Thank you.
If you want to extend an XML file that was not included during the creation process, It is currently possible with the Java-Docs of:
see android.view.LayoutInflater.inflate (XmlPullParser Parser, View Group Route, Boolean Attic)
One Increasing the new view hierarchy throws the Inflat Option if there is an error with the specified XML node
Important reason for performance To not see that inflation depends heavily on pre-processing of XML files are on which construction time. Therefore, it is currently not possible to use LayoutInflater with an XmlPullParser on lineInflater.
Comments
Post a Comment