I am looking for a UI control generator in android. I have a web service which will provide information to create a form kind of thing. That web service will tell me what all controls I need on that form, (it can be TextView, RadioButton, CheckBox, Spinner etc) and left/right position w.r.t. other controls.
For this, I need to write a generic class that will return me the object of that control which i'll get from web service. The generic class will have a function that will return RelativeLayout.LayoutParams, say, alignToLeft(generic controlObject, int), where first arg is object of that control and second arg is id of the referenced control for alignToLeft/Right position. Then add that control to my RelativeLayout using addView and addRule (param).
My problem is how do i create a new instance of controls and pass it on to a function, add param rules and add it to view?