我的应用程序由从左到右的活动中的三个片段组成。用户可以像滑动抽屉一样向左或向右动画。这在所有情况下都能完美地工作,除非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>
在动画制作后保留地图的任何建议吗?
答案 0 :(得分:0)
在显示菜单时,在地图前放置透明布局。我不知道为什么,但这是一个重绘问题。希望有所帮助;)