note

Linear Layout orientation 본문

Android/기본

Linear Layout orientation

투한 2012. 1. 6. 13:24
<?xml version="1.0" encoding="utf-8"?>
<!--
LinearLayout를 사용할때
android:orientation : vertical -> 세로배치
						horizontal -> 가로배치
-->

<!-- 세로 배치 -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="첫번째" />
    
    
    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="두번째" />

    <!-- 가로 배치 -->

    <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
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="네번째" />
    </LinearLayout>

</LinearLayout>


'Android > 기본' 카테고리의 다른 글

Android LinearLayout 가중치  (0) 2012.01.06
Linear Layout gravity  (0) 2012.01.06
Android Log Cat 사용 ,전화 걸기 문자 보내기 기능  (0) 2012.01.06
Android Radio Button (라디오 버튼)  (0) 2012.01.06
Android 체크 박스  (0) 2012.01.05