因为GoogleMap在官方的Demo的使用是在Actvity中使用,现在想在Fragment中使用方法就是不一样的。
1.首先要添加googleserver的lib。
下面是Google Map的两种实现方式
显示使用Activity的形式呈现Google Map
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<fragment
android:name="com.google.android.gms.maps.MapFragment"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#ffffff"
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="14sp"
android:layout_marginLeft="11dp"
android:layout_marginTop="13dp"
android:textColor="#5e5d5d"
android:text="@string/site_map_title"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#5e5d5d"
android:layout_marginTop=