java – 如何获取当前的GPS位置?

前端之家收集整理的这篇文章主要介绍了java – 如何获取当前的GPS位置?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我即将在Android中构建一个应用程序,它将作为路上员工的时钟卡.

在工作开始时,用户将点击一个按钮,该按钮将记录GPS位置和当前时间(从而验证他在给定时间应该在哪里)并且在作业结束时再次记录时间和GPS地点.

所以我认为这很容易,除了我找不到拉取当前位置数据的方法.我能找到的最近的是onLocationChanged,这意味着我无法获得固定的GPS读数.我知道必须能做到这一点,但找不到如何实现它的工作实例.

最佳答案
经过一番研究后,我想出了这个:

public class UseGps extends Activity
{
    Button gps_button;
    TextView gps_text;
    LocationManager mlocManager;

    /** Called when the activity is first created. */

    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        gps_button = (Button) findViewById(R.id.GPSButton);
        gps_text = (TextView) findViewById(R.id.GPSText);

        gps_button.setOnClickListener(new OnClickListener() {
            public void onClick(View viewParam) {
                gps_text.append("\n\nSearching for current location. Please hold...");
                gps_button.setEnabled(false);
                mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
                LocationListener mlocListener = new MyLocationListener();
                mlocManager.requestLocationUpdates( LocationManager.GPS_PROVIDER,mlocListener);
            }
        });
    }

    /* Class My Location Listener */
    public class MyLocationListener implements LocationListener
    {
        @Override
        public void onLocationChanged(Location loc)
        {
            double lon = loc.getLatitude();
            double lat = loc.getLongitude();
            gps_text.append("\nLongitude: "+lon+" - Latitude: "+lat);
            UseGps.this.mlocManager.removeUpdates(this);
            gps_button.setEnabled(true);
        }

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

        @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
        }
    }
}

这会使用按钮和textview设置活动.在启动位置管理器的按钮上设置监听器.

我已经设置了一个实现LocationListener的类MyLocationListener,然后我重写了onLocationChanged()方法,基本上告诉它它获取的第一个位置附加到textview然后它删除了位置管理器.

感谢那些帮助过的人,我希望这对其他人有用.

原文链接:https://www.f2er.com/android/430294.html

猜你在找的Android相关文章