0

この種の質問が何度も寄せられていることは知っていますが、自分のエラー/間違いがどこにあるのかがわからなくて本当に混乱しています. アプリを実行すると、エミュレーターと Samsung Galaxy 3 にマップが表示されますが、表示されるのはズームインまたはズームアウトできる灰色のタイルだけです。

ここに私のマニフェストファイルがあります

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.maptesting"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="17"/>

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permisison android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

<uses-feature
    android:glEsVersion="0x00020000"
    android:required="true"/>

<permission 
    android:name="com.android.maptesting.permission.MAPS_RECEIVE"
    android:protectionLevel="signature"/>
<uses-permission android:name="com.android.maptesting.permission.MAPS_RECEIVE"/>

<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" />

    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="A#####################################4" />

    <activity
        android:name="com.android.maptesting.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>

</application>

</manifest>

ここに私のレイアウトファイルがあります

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" 
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity">

<com.google.android.maps.MapView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/map_view"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:layout_below="@+id/tridView"
    android:layout_centerHorizontal="true"
    android:clickable="true" 
    android:enabled="true" 
    android:apiKey="A####################################4" />

</RelativeLayout>

そして最後に私のJavaファイル

package com.android.maptesting;

import android.os.Bundle;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;

public class MainActivity extends MapActivity {

    private MapView mapView;

    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        mapView = (MapView) findViewById(R.id.map_view);       
        mapView.setBuiltInZoomControls(true);
    }

    public void onDestroy() {
        super.onDestroy();
    }

    @Override
    protected boolean isRouteDisplayed() {
        return false;
    }

}

次に、アプリがGalaxy S3で「実行」されているときにlogcatが言うすべては次のとおりです。

Couldn't get connection factory client
IOException processing: 26
java.io.IOException: Server returned: 3
at     android_maps_conflict_avoidance.com.google.googlenav.map.BaseTileReuqest.readResponseData(BaseTileRequest.java.115)
at     android_maps_conflictavoidance.com.google.googlenav.map.MapService$MapTileRequest.readResponseData(MapService.java:1473)

そしてそれを定期的に繰り返します。つまり、アプリがタイルを取得しようとしているが成功していないことを意味します。

フォーラムやその他のスタックオーバーフローの質問を見ると、マニフェスト ファイルのアクセス許可でよくある問題が発生します。私はそこにすべてがあると正直に信じています。次によくある問題は API キーでした。私はこれに少し混乱しましたが、チュートリアルと他の人々の手順に完全に従いました. 最終的にキーを提供することになると、Googleは他の人が使用しているように見えるMD5ではなく、SHA-1を要求しました. 私は MD5 を試しましたが、Google はキーを取得するための有効な応答としてこれを除外しませんでした。

「Google Maps Android API v2」を使用しようとしていますが、キーを取得するときに「Create new Android Key」を使用し、SHA-1 の後に「;」を使用しました。次に私のパッケージ名。SHA-1 を取得するには、この手順に従ってください > https://stackoverflow.com/a/11493316/1833809 (はい、MD5 と表示されていることはわかっていますが、-v オプションを使用してすべてのフィンガープリントを表示しました)。

正直なところ、ここ数日間苦労して我慢できなくなったので、愚かな、または単純な間違いがどこかにあるとうれしいです。したがって、この種の質問をおそらく繰り返して申し訳ありませんが、他の解決策は役に立たないようです。

4

2 に答える 2

2

率直に言って、重要な問題のように見えます。まず最初に、Google Map API V2 キーの取得と Google マップの作成について書いた 2 つの投稿を確認することをお勧めします。

Google マップ API V2

Google API のキーを取得する

これらのガイドが役に立たない場合は、私の経験 debug.keystoreから、ディレクトリから current: ファイルを削除してみてくださいC:\Users\"Your username"\.android

Android プロジェクトのコンパイルを実行して再作成します。

次に、新しいキーを受け取るので、もう一度キー ガイドに従ってみてくださいSHA1

于 2013-03-12T15:49:04.557 に答える
1

デバッグモードのEclipseでこの問題が発生しています。

ファイル「debug.keystore」を削除し、アプリを実行します。失敗しますが、新しい debug.keystore も作成されます。そのキーストアから 16 進数の printcode を取得し、Google にアクセスしてそのコードのキーを取得します。コードをコンソールに表示するには:

keytool -list -alias androiddebugkey -keystore C:\Users\USUARIO.android\debug.keystore -storepass android -keypass android

次に、MapView にキーを書き込んで実行します。それはうまくいくはずです。

于 2013-03-14T22:41:03.030 に答える