模拟器中的Android Map问题

时间:2010-07-30 06:38:02

标签: android

我有谷歌地图活动显示问题。我开发了一个使用Google Map API的Android应用程序,现在应用程序正在运行,但只显示空白地图。提供MD5证书后我得到了地图密钥。我真的很厌倦了。没有得到任何解决方案。

的Manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.hello.map"
    android:versionCode="1"
    android:versionName="1.0">
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <application android:icon="@drawable/mapsicon" android:label="@string/app_name">
        <uses-library android:name="com.google.android.maps" android:required="true" />

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

main.xml中

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

    <com.google.android.maps.MapView
        android:id="@+id/mapView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:enabled="true"
        android:clickable="true"
        android:apiKey="0VLe45SDuqjxrUhIc1-HWVybCFmiqzeKiz9kk0g"
        />

    <LinearLayout android:id="@+id/zoom"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        />

</RelativeLayout>

Java文件

package com.hello.map;

import android.app.Activity;
import android.os.Bundle;

import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;
import android.os.Bundle;
import android.os.Bundle;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.LinearLayout.LayoutParams;



public class map extends MapActivity
{
    MapView mapView;
    /** Called when the activity is first created. */
    @Override

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        mapView = (MapView) findViewById(R.id.mapView);
        LinearLayout zoomLayout = (LinearLayout)findViewById(R.id.zoom);
        View zoomView = mapView.getZoomControls();

        zoomLayout.addView(zoomView,
            new LinearLayout.LayoutParams(
            LayoutParams.WRAP_CONTENT,
            LayoutParams.WRAP_CONTENT));
        mapView.displayZoomControls(true);
        mapView.setSatellite(true);
    }

    @Override
    protected boolean isRouteDisplayed() {
        // TODO Auto-generated method stub
        return false;
    }
}

请提供解决方案。

3 个答案:

答案 0 :(得分:0)

您需要设置正确的地图api密钥。

<com.google.android.maps.MapView 
    android:id="@+id/mapView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:enabled="true"
    android:clickable="true"
    **android:apiKey="************YOUR_KEY_HERE**********"
    />

请参阅http://mobiforge.com/developing/story/using-google-maps-android

答案 1 :(得分:0)

确保您在Manifest中拥有所需的权限:

  • android.permission.ACCESS_COARSE_LOCATION或android.permission.ACCESS_FINE_LOCATION
  • android.permission.INTERNET对

答案 2 :(得分:0)

你在代理背后工作吗?我建议你使用直接的互联网连接。是的,不要忘记AndroidManifest.xml中的INTERNET_PERMISSION