Hi!
This is an android development question.
If I first set the content view to my xml layout using setContentView(R.layout.main);
and then add another content view using addContentView(layout, params)
, the content views overlap each other. I want the second content view to position itself directly under the first one. Is it possible or do I need to combine the xml and the programatically created layouts in some way? Both of the layouts are linear.
Thanks in advance