1

我的应用程序由从左到右的活动中的三个片段组成。用户可以像滑动抽屉一样向左或向右移动。这在所有情况下都非常有效,除非 MapFragment 可见。

在这两种情况下,MapFragment 已经在 TabHost 中实例化,但在第二张图像中可见。

正确工作

显示的 MapFragment

我以编程方式设置了很多维度,但如果有帮助,这是基本的视图层次结构:

<xxxx.xxxx.WideLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/frag_container"
android:layout_width="900dp"
android:layout_height="match_parent"
android:orientation="horizontal" >

<LinearLayout
    android:id="@+id/left_menu"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@drawable/login_blackboard" >

    <fragment
        android:id="@+id/left_list"
        android:name="xxxx.xxxx.MenuFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:tag="MENU" />
</LinearLayout>

<LinearLayout
    android:id="@+id/middle_menu"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/main"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    </LinearLayout>
</LinearLayout>

<fragment
    android:id="@+id/frag_action"
    android:name="xxx.xxxx.ActionFragment"
    android:layout_width="0dp"
    android:layout_height="match_parent" />
</xxxx.xxxx.WideLayout>

有什么建议可以在动画后将地图保持在其范围内吗?

4

1 回答 1

0

显示菜单时,在地图前面放置一个透明布局。我不知道为什么,但这是一个重绘问题。希望有帮助;)

于 2013-04-04T17:38:08.140 回答