我目前在访问 Hello Mapview 时遇到了一些问题,http://developer.android.com/training/tutorials/views/hello-mapview.html,但我认为我做得正确。我想在单独的活动中显示地图。
地图.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" >
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="working key"
/>
</LinearLayout>
应该显示我的地图的按钮 onclick 事件
public void showMap(View v){
Intent intent = new Intent(getBaseContext(), GoogleMapsActivity.class);
startActivity(intent);
}
GoogleMapsActivity.java
public class GoogleMapsActivity extends MapActivity
{
MapView mapView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.map);
mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
}
该活动已添加到我的清单中,包括 Google api 等。如果我将地图放在我的主要活动中,但它不在我的GoogleMapsActivity
. 请告诉我我在这里错过了什么。
谢谢