본문 바로가기
프로그래밍/Android

[Android] XML에서 객체를 양쪽에 하나씩 정렬하고 싶을때

by Youngs_ 2022. 11. 21.

간혹 XML에서 왼쪽과 오른쪽에 객체를 배치하고싶을때가 있을때 그럴때는 중앙에 View를 아래와같이 넣어놓으면 된다.

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
    
    <View
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_weight="1"/>

    <Button
        android:layout_height="match_parent"
        android:layout_width="wrap_content"/>
        
</LinearLayout>

댓글