반응형
부모가 되는 레이아웃을 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>
반응형
'IT 실무 > 모바일 프로그래밍' 카테고리의 다른 글
findViewById() 에서 String 사용하기 (0) | 2013.11.15 |
---|---|
[Layout] LinearLayout 안에서 요소 오른쪽 정렬하기 (0) | 2013.10.27 |
Fragment에서 Option Menu사용하기 (0) | 2013.05.17 |
[Error] 카메라 구동시 Crash가 일어나는 경우 (Camera -> Crop 등) (0) | 2013.02.11 |
이클립스 UTF-8로 작업하기 (0) | 2013.02.08 |
댓글