我的以下简单代码显示没有错误, 但是没有执行。 致命异议:主要 java.lang.RunTimeException:无法启动活动.... 显示java.lang.NullPointerException。
package com.example.mapstestmednex;
import android.app.Activity;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.view.Menu;
import android.widget.TextView;
public class MainActivity extends Activity {
private LocationManager lm;
private LocationListener localListenD;
public TextView tvLatitude;
public TextView tvLongitude;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
lm = (LocationManager) getSystemService(LOCATION_SERVICE);
Location loc = lm.getLastKnownLocation("gps");
tvLatitude.setText(Double.toString(loc.getLatitude()));
tvLongitude.setText(Double.toString(loc.getLatitude()));
localListenD = new DipsListLocListener();
lm.requestLocationUpdates("gps", 30000L, 10.0f, localListenD);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
class DipsListLocListener implements LocationListener {
@Override
public void onLocationChanged(Location location) {
tvLatitude.setText(Double.toString(location.getLatitude()));
tvLongitude.setText(Double.toString(location.getLatitude()));
}
@Override
public void onProviderDisabled(String arg0) {
}
@Override
public void onProviderEnabled(String arg0) {
}
@Override
public void onStatusChanged(String arg0, int arg1, Bundle arg2) {
}
}
}
XML的文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<TextView
android:id="@+id/lblLatitude"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Latitude:" />
<TextView
android:id="@+id/tvLatitude"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/lblLongitude"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Longitude:" />
<TextView
android:id="@+id/tvLongitude"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
有什么问题? 感谢。
答案 0 :(得分:3)
你永远不会初始化 public TextView tvLatitude; public TextView tvLongitude;
你应该这样做 tvLatitude = new TextView(); 首先,你可以稍后再设置文本。
同样适用于tvLongtitude。 希望有所帮助
答案 1 :(得分:3)
你需要
tvLatitude = (TextView) findViewById(R.id.tvLatitude);
访问tvLatitude
之前,例如设置文本。同样tvLongitude
。
答案 2 :(得分:2)
检查您的activity_main布局。您可能有文本视图来显示纬度和经度。 所以在setContentView(R.layout.activity_main)之后,添加这两个..
tvLatitude =(TextView)findViewById(R.id.lblLatitude);
tvLongitude =(TextView)findViewById(R.id.lblLongitude);
确保使用布局中的右侧ID替换R.id.lblLatitude和R.id.lblLongitude。