중간에 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>
'IT 실무 > 모바일 프로그래밍' 카테고리의 다른 글
[Error] Unable to open sync connection! (0) | 2013.11.16 |
---|---|
findViewById() 에서 String 사용하기 (0) | 2013.11.15 |
[Layout] 화면 아래쪽에 요소 배치하기(align bottom) (0) | 2013.10.27 |
Fragment에서 Option Menu사용하기 (0) | 2013.05.17 |
[Error] 카메라 구동시 Crash가 일어나는 경우 (Camera -> Crop 등) (0) | 2013.02.11 |
댓글