【发布时间】:2014-10-05 20:49:36
【问题描述】:
我正在制作一个实现 Google maps V2 地图的 android 应用程序。
当我实现包含布局标签时, 地图片段不记录点击或来自屏幕的任何类型的输入。 但是当我删除包含标签时,我可以移动地图。
我已经四处寻找,但找不到任何有用的东西。
我也试过这个帖子Google Maps V2 + Drawer Layout 但没有成功。
这是我的布局。
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />
</FrameLayout>
<include layout="@layout/navigation_drawer" />
非常感谢您的帮助。
谢谢
【问题讨论】:
标签: android google-maps navigation-drawer