본문 바로가기
프레임워크/Android

[android/layout] fill_parent, match_parent, wrap_content의 차이

by hs_seo 2016. 4. 11.

안드로이드에서 레이아웃을 구성할 때 사용하는 

fill_parent, match_parent, wrap_content 의 차이는 아래와 같다. 


fill_parent = match_parent 이다. 

api8에서 부터 match_parent가 fill_parent로 이름이 변경되었다. 

fill_parent는 현재 객체의 크기를 부모 객체의 크기와 동일하게 설정한다. 

즉 부모의 width, height가 상속된다. 


wrap_content는 자식 컴포넌트의 사이즈에 우선하여 길이가 설정된다 




반응형