My program takes xml layout as string from web server. Can I convert this string to view and add to layout ?
For example :
String xml = "<xml code>";
View view = //parse this xml code to view;
layout.add(view);
My program takes xml layout as string from web server. Can I convert this string to view and add to layout ?
For example :
String xml = "<xml code>";
View view = //parse this xml code to view;
layout.add(view);