我想在我的Android模拟器上显示Map。我在android API 7中找到了一个示例应用程序HelloMaps。
我创建了API密钥并将该密钥粘贴到MapView
布局中。以下是mapview.xml
的代码。
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="my_API_key_here"
/>
以下是HelloGoogleMaps.java的代码
public class HelloGoogleMaps extends MapActivity
{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
MapView mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
}
@Override
protected boolean isRouteDisplayed()
{
return false;
}
}
以下是清单文件代码。
<?xml version="1.0" encoding="utf-8"?>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".HelloGoogleMaps"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library android:name="com.google.android.maps" />
</application>
<uses-permission android:name="android.permission.INTERNET" />
使用上面的代码,我只能看到Map的背景区域而不是实际的Map。 请帮帮我如果我遗失了什么。