반응형
몇번 헷갈려서 정리하려고 글을 쓴다.
gravity는 자신에게 포함된 자식 뷰의 어디에 위치시킬지 결정한다.
layout_gravity는 자신의 위치를 부모 뷰의 어디에 위치시킬지 결정한다.
<TextView
android:text="gravity"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:text="layout_gravity"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
이렇게 되있는 경우,
이런 결과가 나온다.
gravity가 잘 안보인다. 이럴때는 width를 match_parent로 해주면 잘 보인다.
차이를 확실하게 구분하자
"댓글, 공감 버튼 한 번씩 누르고 가주시면 큰 힘이 됩니다"
반응형