[Layout] 화면 아래쪽에 요소 배치하기(align bottom)
페이지 정보

본문
부모가 되는 레이아웃을 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>
- 이전글단축키 20.01.16
- 다음글안드로이드 테이블레이아웃. (Android TableLayout) 20.01.15
댓글목록
등록된 댓글이 없습니다.