1

https://blog-emildesign.rhcloud.com/?p=435でネットで提供された指示に従いました。アプリを作成し、Galaxy S IV で実行しようとしましたが、+ と空白の画面が表示されます。 - ボタン、私はプロジェクトのすべてのファイルもあなたに提供していると確信しています。私を助けてください。

1.AndroidManifest.xml

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

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

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

<permission android:name="com.example.mapwithgps.permission.MAPS_RECEIVE" android:protectionLevel="signature"/>
<uses-permission android:name="com.example.mapwithgps.permission.MAPS_RECEIVE"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<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" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.mapwithgps.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="AIzaSyCNChGhmjHFvLp4atblSojMLvnnfg-_QZA" />


</application>

</manifest>

2.activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<fragment
    android:name="com.google.android.gms.maps.SupportMapFragment"

    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
</LinearLayout>

3.MainActivity.java

package com.example.mapwithgps;

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.main, menu);
    return true;
}

}

アプリケーションの実行を手伝ってください。

4

2 に答える 2

1

APIキーに問題があるようです!

すべての手順を含むhttp://www.vogella.com/articles/AndroidGoogleMaps/article.html チュートリアル をお試しください。

于 2013-07-25T04:43:18.703 に答える
-1

私の Google マップ ガイドにたどり着いたようです。minSDKVersionまず、14 歳の場合、FragmentActivityとオブジェクトを使用しても意味がありません。単純なとSupportMapFragmentに変更するだけです。ActivityMapFragment

次に、このガイドのすべての手順に従っても、ズーム コントロールを含む空白のマップの問題が解決しない場合は、このガイドも確認することをお勧めします。

Google マップ API V2 キー

キーを作成し、Google API コンソールで正しく構成したことを確認してください。

于 2013-07-25T14:23:31.083 に答える