添加MapFragment时应用程序闪烁

时间:2013-03-28 11:44:00

标签: android google-maps

我有一个多窗格主要活动。它的布局是

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_margin="@dimen/multipane_half_padding"
    android:layout_weight="2"
    android:background="@drawable/grey_frame"
    android:orientation="vertical" >

    <fragment
        android:id="@+id/fragment_navigation"
        android:name="com.armsoft.mtrade.fragments.NavigationFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

<FrameLayout
    android:id="@+id/fragment_container_detail"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_margin="@dimen/multipane_half_padding"
    android:layout_weight="5"
    android:background="@drawable/grey_frame" />

而且我将另一个片段添加到fragment_container_detail中

<FrameLayout
    android:id="@+id/planned_routes_map_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:visibility="gone" />
<com.armsoft.mtrade.widget.BidirectionalDatePicker
    android:id="@+id/bidirectional_date_picker"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

<FrameLayout
    android:id="@+id/planned_routes_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

布局。

当按下菜单项时,我将MapFragment添加到planned_routes_map_container 我的应用程序开始闪烁。 我该如何解决这个问题?

0 个答案:

没有答案