Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.