2

我正在尝试学习如何在 Android 中使用 GPS 服务,为此,我正在开发一个程序,当用户按下按钮时显示实际的 gps 位置。

但是每当我按下它时,我都会得到一个 0.0 ...

我认为这是一段无法正常工作的代码:

LocationManager mlocManager=null;
    LocationListener mlocListener;
    mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
    mlocListener = new MyLocationListener();
    mlocManager.requestLocationUpdates( LocationManager.GPS_PROVIDER, 0, 0, mlocListener);


    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Log.d(LOGTAG,"onCLickButton");
                firstCoord.setText("");
            Log.d(LOGTAG,Double.toString(MyLocationListener.latitude));
            Log.d(LOGTAG, "AAAAAAAA");
            if(MyLocationListener.latitude>0)
                {
                    coordLat1 = MyLocationListener.latitude;
                    coordLon1 = MyLocationListener.longitude;
                    firstCoord.setText(Double.toString(coordLat1) + ' ' + Double.toString(coordLon1));
                }
                else
                {
                    AlertDialog.Builder alert = new AlertDialog.Builder(home_screen.this);
                    alert.setTitle("Wait");
                    alert.setMessage("GPS en progress, wait.");
                    alert.setPositiveButton("OK", null);
                    alert.show();
                }
        }
    });

onClickbutton 之后的第一个日志显示 0.0 但如果我使用谷歌地图应用程序,它会显示我的手机在哪里。所以我认为问题是我没有得到坐标。

这是我的 MyLocationListener 类:package com.gps.distance;

import android.location.Location;
import android.location.LocationListener;
import android.os.Bundle;
import android.util.Log;

public class MyLocationListener implements LocationListener {

private static final String LOGTAG = "LogsAndroid";
public static double latitude;
public static double longitude;

@Override
public void onLocationChanged(Location loc)
{
    loc.getLatitude();
    loc.getLongitude();
    latitude=loc.getLatitude();
    longitude=loc.getLongitude();
    Log.d(LOGTAG, "TAKE POS");
}

@Override
public void onProviderDisabled(String provider)
{
    //print "Currently GPS is Disabled";
    Log.d(LOGTAG, "GPS DISABLED");
}
@Override
public void onProviderEnabled(String provider)
{
    //print "GPS got Enabled";
    Log.d(LOGTAG, "GPS ENABLED");
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras)
{
}
}

onLocationChanged 从未使用过。如果我禁用或启用 GPS,则会出现日志但 onLocationChanged 不会...从不。

4

0 回答 0