检测gps禁用

时间:2012-05-14 16:27:50

标签: android

我有这个代码来获取我的GPS位置:

    public void run() {

        mLocationManager = (LocationManager)context.getSystemService(Context.LOCATION_SERVICE);

        if (mLocationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {

            Looper.prepare();

            mLocationListener = new MyLocationListener();
            mLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, mLocationListener);

            Looper.loop(); 
            Looper.myLooper().quit(); 

        } else {

            //Never be here!!!

        }
}

private Handler handler = new Handler() {
    @Override
    public void handleMessage(Message msg) {
        pd.dismiss();
        mLocationManager.removeUpdates(mLocationListener);

        if (currentLocation!=null) {

                  //found. OK
        }
    }
};

private class MyLocationListener implements LocationListener {
    @Override
    public void onLocationChanged(Location loc) {
        if (loc != null) {
            setCurrentLocation(loc);
            handler.sendEmptyMessage(0);

        }
    }

    @Override
     public void onProviderDisabled(String provider) {
         //If I disable de GPS I have an error
     }

    @Override
    public void onProviderEnabled(String provider) {
        // TODO Auto-generated method stub
    }

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {
        // TODO Auto-generated method stub
    }
} 

我怎样才能检测到禁用的GPS以及太多时间寻找数据?

我认为onProviderDisabled会检测到该事件,但是,我的代码永远不会去那里。我有这个例外:

无法在未调用Looper.prepare

的线程内创建处理程序

提前谢谢

0 个答案:

没有答案