我想要一個GPS按鈕切換狀態和一個TextView與 GPS的當前狀態。GPS狀態和TurnOnOff
但是當我implemets LocationListener的和unimplemente方法,如:
package com.wissen.android;
import android.app.Activity;
import android.location.Location;
import android.location.LocationListener;
import android.os.Bundle;
public class Hello extends Activity implements LocationListener {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
}
public void onLocationChanged(Location arg0) {
// TODO Auto-generated method stub
}
public void onProviderDisabled(String arg0) {
// TODO Auto-generated method stub
}
public void onProviderEnabled(String arg0) {
// TODO Auto-generated method stub
}
public void onStatusChanged(String arg0, int arg1, Bundle arg2) {
// TODO Auto-generated method stub
}
}
我的Eclipse編譯它,但Android的divice得到:應用程序意外停止...
我認爲這真的很容易會有人幫助我? 謝謝
使用Eclipse的logcat的視圖來查看堆棧跟蹤和異常正在設備上拋出。除非您打算在您的應用程序「意外停止」時在黑暗中拍攝,否則您將來可能會感激。 – eldarerathis