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

我看到你偶然发现了我的谷歌地图指南。好吧,如果你是 14 岁,那么使用and对象minSDKVersion是没有意义的,你可以将它们更改为简单的and a 。FragmentActivitySupportMapFragmentActivityMapFragment

其次,如果您按照本指南的所有步骤操作,但仍然遇到带有缩放控件的空白地图的问题,我建议您也阅读本指南:

谷歌地图 API V2 密钥

并确保您在 Google API 控制台中生成并正确配置了密钥。

于 2013-07-25T14:23:31.083 回答