您好我有基于标签的应用程序包含活动组。在一个活动组我有一个子活动,我必须显示一个地图,并绘制多个位置,我作为服务器的响应得到,因为谷歌地图版本1不再支持我必须使用 oogle地图版本2,但是当我使用下面给出的xml时,我得到xml inflate Infalte that Fragments
java.lang.RuntimeException:无法启动活动ComponentInfo {com.teks.googlemaps / com.teks.googlemaps.MainActivity}:android.view.InflateException:二进制XML文件行#13:错误膨胀类片段
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment"
/>
</RelativeLayout>
要添加更多规格,我已添加了Google Play服务。在android 2.2中制作了api键和我的目标设备
plz help
答案 0 :(得分:0)
您需要使用FragmentActivity for SupportMapFragment才能工作。
顺便说一下。 ActivityGroup已被弃用超过2年。