안드로이드 프로그래밍
안드로이드 layout_width, layout_height
안드로이드 layout_width, layout_height는 뷰의 폭과 높이를 지정한다
뷰는 부모 뷰 혹은 액티비티 안에 배치되는데, layout_width, layout_height에서 지정한 크기로 배치된다. 수평, 수직 각 방향에 대해 크기를 지정할 수 있으며, 아래와 같은 속성값을 가진다.
match_parent(fill_parent) |
부모 뷰의 크기에 맞게 채운다 |
wrap_content |
내용의 크기에 맞게 채운다 |
상수 |
'상수' 크기에 맞춘다 |
(*SDK 2.2(proyo)부터 fill_parent -> match_parent 로 변경)
1. 가로 : wrap_content / 세로 : wrap_content
2. 가로 : match_parent / 세로 : wrap_content
3. 가로 : wrap_content / 세로 : match_parent
4. 가로 : match_parent / 세로 : match_parent
댓글 영역