通过GPS在android中找到当前位置

时间:2013-07-17 09:38:46

标签: android gps

在改变其距离非常短的位置(如3-4英尺)后,是否有可能通过“GPS”获得用户的准确纬度和经度。

实际上我在android中创建了一个应用程序,它给了我一个用户的经度和经度,但它在用户的同一个点或位置上改变了它的值。

请帮我解决这个问题。 提前谢谢。

2 个答案:

答案 0 :(得分:0)

您应该在活动中实施locationlistener

    private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; // 10 meters

        // The minimum time between updates in milliseconds


        private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute


            boolean isGPSEnabled = false; 

                LocationManager locationManager = (LocationManager) yourapplicationcontext
                                        .getSystemService(LOCATION_SERVICE);

                                // getting GPS status
                                isGPSEnabled = locationManager
                                        .isProviderEnabled(LocationManager.GPS_PROVIDER);
           if (isGPSEnabled) {
                            if (location == null) {
                                locationManager.requestLocationUpdates(
                                        LocationManager.GPS_PROVIDER,
                                        MIN_TIME_BW_UPDATES,
                                        MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                                Log.d("GPS Enabled", "GPS Enabled");
                                if (locationManager != null) {
                                    location = locationManager
                                            .getLastKnownLocation(LocationManager.GPS_PROVIDER);
                                    if (location != null) {
                                        latitude = location.getLatitude();
                                        longitude = location.getLongitude();
                                    }
                                }
                            }
                        }
//Add this permission
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />  
    <uses-permission android:name="android.permission.INTERNET" />

答案 1 :(得分:0)

我的经验说这取决于您使用的手机/设备,如果您的设备支持AGPS,那么获得GPS坐标将更容易和快速(与您的编码技能无关,因为您将使用Android SDK)。普通的GPS也会返回准确的数据,尝试从谷歌播放下载Savaari应用程序,它的工作方式就像魅力一样,你的第二个问题是可以在特定的时间或距离间隔后得到坐标,当你注册你的列表时你必须提供时间和想要接收GPS值的距离(以米为单位)。

查看此代码段: -

public void startReadingGPS(int readAfterMinimumTime, int readAfterMinimumDistance ){
        locationManager = (LocationManager)mContext.getSystemService(Context.LOCATION_SERVICE);
        locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, readAfterMinimumTime, readAfterMinimumDistance, this);
    }

public void requestLocationUpdates(String provider,long minTime,float minDistance,LocationListener listener) 在API级别1中添加 使用指定的提供程序注册位置更新,以及待处理的意图。

有关如何使用此方法的更多详细信息,请参阅requestLocationUpdates(long,float,Criteria,PendingIntent)。

参数 提供者要注册的提供者的名称 minTime位置更新之间的最小时间间隔,以毫秒为单位 minDistance位置更新之间的最小距离,以米为单位 listener一个LocationListener,它的onLocationChanged(Location)方法将为每个位置更新调用