プロキシ サーバーを使用してインターネットに接続しています。エミュレータのブラウザはインターネットに接続していますが、マップ アプリは接続されておらず、作成した Google マップ アプリはグリッドのみを表示しています。メインで Google API キーを使用しました。 xml を変更し、manifest.xml に INTERNET.PERMISSION を追加しました。Googleで問題を検索したところ、プロキシサーバーを使用するとGoogleマップアプリが機能しないことがわかりました。
それは本当ですか?..それに対する解決策はありますか? 助けてください...
マニフェスト.xml
<?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>