我正在使用代理服务器连接到互联网.. 我的模拟器的浏览器连接到互联网,但地图应用程序没有连接,我写的谷歌地图应用程序只显示网格。我在main.xml中使用了google api密钥,并在manifest.xml中添加了INTERNET.PERMISSION。 当我在google中搜索问题时,我发现如果我们使用代理服务器,谷歌地图应用程序将无效。
是真的吗?..有什么解决方案吗? Plz帮助我......
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.googlemap"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".GoogleMapActivity" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library android:name="com.google.android.maps" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
</application>
</manifest>
答案 0 :(得分:1)
你添加了
吗?<uses-library android:name="com.google.android.maps" />
在<application></application>
个标签内?
答案 1 :(得分:0)
在代理服务器中它不起作用。您必须使用没有代理设置的地图。
答案 2 :(得分:0)
我确信您已经创建了密钥库和正确的Map API密钥,如果不是,则使用以下步骤创建您自己的密钥库和相应的映射密钥:
keytool -genkey -v -keystore debug.key store -alias androiddebugkey -keyalg RSA -validity 10000