//Google参考文档,帮助我们怎样申请一个Google Map Key及其相关内容
code.google.com/android/add-ons/google-apis/mapkey.html
//xml文件
<com.google.android.maps.MapView
android:layout_height="fill_parent"
android:layout_weight="fill_parent"
android:enable="true"
android:clickable="true"
android:apiKey="你申请到的KEY"/>
//在Activity中我们继承的是MapActivity而不是Activity</p>