在我的Android应用程序中,我尝试使用Google地图。然后我从shacode获取密钥。我按照本教程获取Api密钥访问http://mirnauman.wordpress.com/tag/google-maps-api-key/我在项目Android manifest.xml中使用了我的密钥。
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.googlemaps"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="6"
android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<uses-library android:name="com.google.android.maps" />
<activity
android:name="com.example.googlemaps.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.maps.v2.Api_key"
android:value="MyGooglekey" />
</application>
</manifest>
答案 0 :(得分:1)
我创建了以下链接,我解决了这个问题。谢谢大家。本教程解释了解决这个问题的A-Z路径。关注链接1;
另一件事是现在可以使用android studio它更容易 可以按照本教程进行操作。关注链接2;
http://www.todroid.com/how-to-create-a-google-map-application-using-android-studio/
http://www.androidhive.info/2013/08/android-working-with-google-maps-v2/