[연습7] - 태블릿용 화면 레이아웃 추가하기

  1. 연습6에서 수행한 프로젝트를 바탕으로 진행
  2. 액티비티에 큰화면 레이아웃을 추가

  3. res/layout_large폴더에 있는 activity_main.xml 파일을 열고, 다음과 같이 레이아웃을 정의

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">
    
        <fragment
            android:name="com.android.tabletphonefragment.TitlesFragment"
            android:id="@+id/titles"
            android:layout_weight="1"
            android:layout_width="0px"
            android:layout_height="match_parent" />
        <FrameLayout
            android:id="@+id/details"
            android:layout_weight="1"
            android:layout_width="0px"
            android:layout_height="match_parent" />
    
    </LinearLayout> 
  4. 태블릿용 AVD 생성

  5. 테블릿용 AVD에서 실행