Is it possible to set a view to 100% of the parent in Designer?
I used -1 width and -1 height as suggested by another post.
However, the designer collapses the view to 0x0 ad shows just the red handles overlapping each other. I would like to see the real 100% view in Designer.
Woud rather have designer fit it to the screen or parent container.
cant you set it programatically by doing something like :
activity.AddView(View_you_need_to_be_Full_size,0,0,100%x,100%y)
or if you are using a panel as the parent cant you do
activity.AddView(View_you_need_to_be_Full_size,0,0,panel1.width,panel1.hieght)
I'm just thinking out loud here but that is what i would try first.