0

当我更改选项卡时,选项卡子活动背景变为黑屏。我在笔记(Nexus 7)和平板电脑(Smasung Galaxy Tab)中遇到了这个问题。请分享一些想法来解决它。首先,我单击了第一个选项卡。当时活动加载正常。然后我去了标签 2。然后我再次点击了第一个标签。这时候屏幕变黑了。基本上布局 bg 没有加载。

提前致谢。

4

1 回答 1

0

我在 tab_host.XML 中设置了与我在其他布局中使用的图像相同的背景图像。

            <FrameLayout android:layout_width="match_parent"
                android:layout_height="match_parent" android:id="@android:id/tabcontent">
                <LinearLayout android:layout_width="match_parent"
                    android:layout_height="match_parent" android:id="@+id/tab1" />
                <LinearLayout android:layout_width="match_parent"
                    android:layout_height="match_parent" android:id="@+id/tab2" />
                <LinearLayout android:layout_width="match_parent"
                    android:layout_height="match_parent" android:id="@+id/tab3" />
            </FrameLayout>
        </RelativeLayout>
    </TabHost>


</LinearLayout>
于 2012-12-17T09:53:48.813 回答