2013-09-30 180 views
-2

我下面的簡單代碼顯示沒有錯誤, 尚未執行。 致命例外:main java.lang.RunTimeException:無法啓動活動.... java.lang.NullPointerException。Java lang空指針異常

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> 

什麼問題? 謝謝。

+1

從LogCat發佈堆棧跟蹤。 – chrylis

回答

2

檢查您的activity_main佈局。你可能有textviews顯示經度和緯度。 因此,在setContentView(R.layout.activity_main)之後,添加這兩個參數。

tvLatitude =(TextView)findViewById(R.id.lblLatitude);

tvLongitude =(TextView)findViewById(R.id.lblLongitude);

確保在佈局中用正確的ID替換R.id.lblLitude和R.id.lblLongitude。

+0

正確寫下答案,就像R.id.lblLatitude那樣,而不是「Latitude id here」 –

+0

已經在工作了。每個人thanx。 – user2026760

+0

@Nana @ user2026760看起來這裏引用了錯誤的文本視圖;非「標籤」似乎是首選。例如'R.id.tvLatitude'。 – SK9

3

你永遠不會初始化公共TextView tvLatitude的 ; public TextView tvLongitude;

你應該做 tvLatitude = new TextView();首先,您可以稍後再設置文本。

tvLongtitude也一樣。 希望幫助

+0

Thanx。加工。 – user2026760

+0

@ user2026760不,這是行不通的。它不引用來自佈局資源的文本視圖,即使它阻止了NPE。 – SK9

+0

我已經修好了。它正在工作。 – user2026760

3

你需要

tvLatitude = (TextView) findViewById(R.id.tvLatitude); 

訪問tvLatitude之前,如設置其文本。同樣tvLongitude

+0

Thanx。加工。 – user2026760

+0

如果其工作請接受幫助社區的答案。 – Pedantic