更改标签时显示黑屏的Android活动

时间:2012-12-15 09:58:44

标签: android

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

提前致谢。

1 个答案:

答案 0 :(得分: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>