액티비티에 큰화면 레이아웃을 추가
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>
태블릿용 AVD 생성
테블릿용 AVD에서 실행
디바이스가 회전이 안되도록 설정되어 있으면, 화면을 위에서 아래로 쓸어내리면 디바이스 회전을 가능케 하는 버튼을 활성화 시킨다.
실행결과