出于某种原因,这个非常简单的程序在到达getController()方法时崩溃了。它几乎就像调试器试图告诉我一些东西,但它的全部都是嘎嘎嘎嘎。不管怎么说都没有明确的解释或例外,哈。但它肯定会在这条线上爆炸。如果我将其从代码中删除,应用程序将运行基本地图。我已经尝试了所有可以想象到的东西,我无法弄清楚问题。有人有想法吗?提前谢谢。
public class Main扩展MapActivity {
MapView myMapView;
MapController mc;
GeoPoint point;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
double lon = -79.9;
double lat = 40.4;
myMapView = (MapView) findViewById(R.layout.main);
point = new GeoPoint((int) (lat * 1E6), (int) (lon * 1E6));
mc = myMapView.getController();
mc.animateTo(point);
mc.setZoom(13);
}
@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return false;
}
main.xml代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.android.maps.MapView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="0SN6PntBTxgMIeekPQm2Of1gnlDiHmrTm8GG2xQ"
></com.google.android.maps.MapView>
</LinearLayout>
最后,manifest.xml代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.simplyDesign.BarCraw" android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".Main" 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>
</manifest>
答案 0 :(得分:0)
你应该给你的MapView一个android:id并将它提供给findViewById()。在您的代码中,您将搜索包含整个布局的Id的视图。这只能返回null ...并在null上调用getController()时给你一个NullPointerException。
答案 1 :(得分:0)
在xml中定义MapView的id
<com.google.android.maps.MapView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="0SN6PntBTxgMIeekPQm2Of1gnlDiHmrTm8GG2xQ"
android:id="@+id/mapView"
></com.google.android.maps.MapView>
并更改此行..
myMapView = (MapView) findViewById(R.layout.mapView);