我有冰淇淋三明治设备的问题。我使用Tab Host Fragment和Support Map Fragment,当我在Tabs之间切换时,我在支持地图片段下有黑色背景。我该如何解决?
<android.support.v4.app.FragmentTabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#fff"
android:layout_weight="0"/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<FrameLayout
android:id="@+id/realtabcontent"
android:background="#fff"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:color="@android:color/transparent" />
</FrameLayout>
</LinearLayout>
</android.support.v4.app.FragmentTabHost>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map_host"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff">
<fragment
android:id="@+id/map"
android:name="com.example.user.tabhost_blackbackground.NiceFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent" />
</FrameLayout>