我的应用程序由从左到右的活动中的三个片段组成。用户可以像滑动抽屉一样向左或向右移动。这在所有情况下都非常有效,除非 MapFragment 可见。
在这两种情况下,MapFragment 已经在 TabHost 中实例化,但在第二张图像中可见。
我以编程方式设置了很多维度,但如果有帮助,这是基本的视图层次结构:
<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>
有什么建议可以在动画后将地图保持在其范围内吗?