본문 바로가기
IT 실무/모바일 프로그래밍

[Layout] LinearLayout 안에서 요소 오른쪽 정렬하기

by 지식id 2013. 10. 27.
반응형

중간에 View 를 넣고 layout_weight="1" 옵션을 주면 된다.


Ex)

    <LinearLayout

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:orientation="horizontal" >


        <View

            android:layout_width="0dp"

            android:layout_height="0dp"

            android:layout_weight="1"

            />    

       

        <Button

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="Button" />


    </LinearLayout>


LinearLayout 양쪽 끝에 버튼을 배치 하려면 아래와 같이 하면 된다.


Ex)

    <LinearLayout

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:orientation="horizontal" >


        <Button

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="Button" />


        <View

            android:layout_width="0dp"

            android:layout_height="0dp"

            android:layout_weight="1"

            />    

        

        <Button

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="Button" />


    </LinearLayout>

반응형

댓글