我正在尝试使用以下XML构建地图活动:
<com.google.android.gms.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.getfamiliarwiththemap.MapsActivity" >
<LinearLayout
android:id="@+id/mLlayoutBottomButtons"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:orientation="vertical" >
<Button
android:id="@+id/ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Select"
android:textColor="#ffec00"
android:background="#b600ff"
android:layout_marginBottom="5dp"
android:layout_marginTop="500dp"
android:layout_marginLeft="150dp"
android:layout_marginRight="150dp"
/>
</LinearLayout>
</fragment>
</com.google.android.gms.maps.MapView>
我不断收到渲染错误:未知片段 有人可以教我正确安装这个谷歌播放服务SDK的方法吗?我有一个名为google_play_services的文件夹,这就是我想要使用的文件。
答案 0 :(得分:-2)
尝试使用class
代替android:name
:
<fragment
android:id="@+id/map"
class="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.getfamiliarwiththemap.MapsActivity" >