I write a rectangle widget.
After writing its portrait XML, I want to write its landscape.
I should change any
LinearLayout
orientation from horizontal to vertical?horizontal is right to left (not top to bottom) relative to the screen in origin portrait mode?
If i don't mention
layout_height
property, what is the default? (match parent?
)how does
weight
property take effect when I specifylayout_width = X dip
?when I specify
layout_width = wrap_content
?what does
fill_parent
mean when in top-mostLinearLayout
?