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>
'Mobile > Android' 카테고리의 다른 글
[Andorid] Density (0) | 2011.11.10 |
---|---|
android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views (2) | 2011.11.05 |
안드로이드 Manager 종류 (0) | 2011.11.02 |
[Android] android.database.sqlite.DatabaseObjectNotClosedException (0) | 2011.10.27 |
[Android] AlarmManager (0) | 2011.10.25 |