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

[Layout] 화면 아래쪽에 요소 배치하기(align bottom)

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

부모가 되는 레이아웃을 RelativeLayout 으로 하고 아래쪽에 배치할 레이아웃에 


        android:layout_height="wrap_content"

        android:layout_alignParentBottom="true"


옵션 주기


Ex)


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent">


    <LinearLayout

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:layout_alignParentBottom="true"

        android:layout_gravity="bottom"

        android:orientation="horizontal" >


    </LinearLayout>


</RelativeLayout>



반응형

댓글