본문 바로가기

프로그래밍 일반/안드로이드 심화

[안드로이드] 레이아웃 배치를 원하는대로 하고싶을 때

안드로이드에서 Palette를 사용하여 레이아웃을 배치하다보면 원하는대로 배치가 되지 않고 이상하게 갈 때가 많다.

 

해결책 1. 리니어를 썼다면 -> Constraint으로 쓰는 방법

 

해결책 2 .xml에서 넣는 방법

 

 

아래와 같이 margintStart(왼쪽), margintTop(위쪽)과 toStartOf를 숫자로 주면 원하는대로 컨트롤할 수 있다.

        android:layout_marginStart="148dp"
        android:layout_marginTop="92dp"

        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent