Ошибка во время процесса постинфляции для TabHost - PullRequest
1 голос
/ 04 мая 2011

У меня есть FrameLayout внутри TabHost.Я получаю следующую ошибку.Как я могу заставить его рендериться в Eclipse?

Error during post inflation process:
The FrameLayout for the TabHost has no content. Rendering failed.

Вот мой XML

<?xml version="1.0" encoding="utf-8"?>
<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">

    <!-- 
    <RelativeLayout android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/actionbarRelativeLayout">
        <ImageButton android:layout_height="wrap_content" android:layout_width="wrap_content" android:src="@drawable/icon" android:id="@+id/stocktwitsImageButton"></ImageButton>
        <ImageButton android:layout_height="wrap_content" android:layout_width="wrap_content" android:src="@drawable/icon" android:id="@+id/composeImageButton" android:layout_alignParentRight="true"></ImageButton>
    </RelativeLayout>
-->

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="5dp">
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:padding="5dp" />
    </LinearLayout>
</TabHost>

1 Ответ

1 голос
/ 27 мая 2011

Это выдержка из метода установки Android с помощью метода TabHost:

final int count = content.getChildCount();

if (count == 0) {
    throw new PostInflateException(
            "The FrameLayout for the TabHost has no content. Rendering failed.\n");
}

Как говорит исключение, вам нужно иметь контент. Изменить XML-код на:

<FrameLayout android:id="@android:id/tabcontent"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="5dp"> 
    <LinearLayout android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/tab1"></LinearLayout>
</FrameLayout>
...