3

現在、新しい Google マップ API v2 の MapFragment を使用しています。インターネットなしで最初にアプリケーションを起動し、インターネットが戻ってきてマップを再度開いたときを除いて、すべて正常に機能し、マップは空白のままです。

誰でもこの問題を解決するのを手伝ってもらえますか? この問題は、Google のサンプル マップ アプリにも見られます。

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.test"
    android:versionCode="1"
    android:versionName="1.0" >
<permission
    android:name="com.example.mapdemo.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />

<uses-permission android:name="com.example.mapdemo.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission 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" />

<!-- Maps API needs OpenGL ES 2.0. -->
<uses-feature
    android:glEsVersion="0x00020000"
    android:required="true" />

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="16" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="[map_key]" />

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

MainActivity.java

package com.example.test;

import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.Menu;

public class MainActivity extends FragmentActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

}

activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    class="com.google.android.gms.maps.SupportMapFragment"
    map:uiCompass="false"
    map:uiZoomControls="false" />

</RelativeLayout>

4

2 に答える 2

0

Google サービスのバグだと思います。彼らはすでに新しいGoogleプレイサービスでそれを修正しています. Android SDK で Google Play サービスと API を更新する必要があります。次に、更新された Google Play サービス ライブラリをプロジェクトにインポートしてみてください。プロジェクトを再コンパイルします。うまくいくと思います。

于 2013-04-11T04:26:25.233 に答える
0

マップ アクティビティはエミュレーターでは機能しません。また、有効なキーストアを使用してアプリケーションをエクスポートしない限り、実行されません。最後に、マニフェスト ファイルの正しい mapAPI キーです。

于 2013-01-21T03:12:10.377 に答える