WEB开发网
开发学院手机开发Android 开发 Android 开发调用 Google Maps 阅读

Android 开发调用 Google Maps

 2010-02-27 23:58:00 来源:WEB开发网   
核心提示:<com.google.android.maps.MapView android:id="@+id/mapview" android:layout_width="fill_parent"
  1. <com.google.android.maps.MapView
  2.                       android:id="@+id/mapview"
  3.                       android:layout_width="fill_parent"
  4.                       android:layout_height="fill_parent"
  5.                       android:apiKey="0jOkQ80oD1JL9C6HAja99uGXCRiS2CGjKO_bc_g" />
复制代码或者
  1.   <view android:id="@+id/mv"
  2.   class="com.google.android.maps.MapView"
  3.   android:layout_width="fill_parent"
  4.   android:layout_height="fill_parent"
  5.   android:layout_weight="1"
  6.   android:apiKey="0jOkQ80oD1JL9C6HAja99uGXCRiS2CGjKO_bc_g"
  7.   />
复制代码5.Android 在sdk1.5的预装的add-on中提供了一个Map扩展库com.google.android.maps,利用它你就可以给你的android应用程序增加上强大的地图功能了。这个库的位置在Your-SDK_DIRadd-onsgoogle_apis-3 libs.
一定要在manifest.xml中设置全相应的权限,比如:
  1. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  2. <uses-permission android:name="android.permission.INTERNET" />
复制代码要在manifest.xml中加上要用的maps库:
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2. package="com.example.package.name">
  3. ...
  4. <application android:name="MyApplication" >
  5. <uses-library android:name="com.google.android.maps" />
  6. ...
  7. </application>
  8. ...
  9. </manifest>
复制代码需要说明的是这个库不是标准的android

Tags:Android 开发 调用

编辑录入:coldstar [复制链接] [打 印]
赞助商链接