개발 타임캡슐/Java

[Android Studio] wrap_content / match_parent 차이

🥭Mango 2020. 4. 26. 02:49

wrap_content / match_parent 차이점

 

wrap_content / match_parent 차이는 간단하다.

 

wrap_content는 폭과 높이가 글자가 꼭 들어갈 정도로 설정되고, 

match_parent는 자신의 부모에 폭이나 높이를 맞추는 것 이다.

 

긴 말 필요 없이 예시를 보면 이해가 빠르게 된다.

 

1 - wrap_content + wrap_content

 

 

wrap_content + wrap_content는 이렇게 글자 크기에 맞게 감싸진다.

 

2 - wrap_content + match_parent

 

wrap_content + match_parent는 이렇게 가로는 글자 크기에 맞게 세로는 부모 레이아웃에 맞춰진다.

 

3 - match_parent + wrap_content

match_parent + wrap_content는 세로는 글자 크기에 맞게 가로는 부모 레이아웃에 맞춰진다.

 

4 - match_parent + match_parent

match_parent + match_parent는 이렇게 가로 세로 모두 부모 레이아웃에 맞춰진다.