본문 바로가기

Mobile/Android

Your content must have a TabHost whose id attribute is 'android.R.id.tabhost'

TabHost 생성 중 해당 에러를 발생하는 경우
id 값이 잘 못 되서 발생하는 것임
TabHost, FrameLayout, TabWidget의 id는 android:id/~로 시작되는 미리 정의된 id를 써야함
보통 id값을 android:id="@+id/tabhost" 방식으로 정의 하지만,
TabHost의 경우 android:id="@android:id/tabhost" 방식으로 정의 해야 함

    <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@android:id/tabhost"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

  <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            >
        </FrameLayout>
    </TabHost>