2

我正在尝试使用 gps 或网络在编辑框中单击按钮来检索我的当前位置..我已经尝试了我在教程和旧帖子中找到的所有可能的方法..但我的位置始终为空..我不是得到我错的地方。?我正在有网络但没有互联网/gprs 的真实设备上对其进行测试...

这是我正在使用的代码..我也尝试了与 GPS_PROVIDER 相同的代码..请帮助我..

     protected void showCurrentLocation() 
   {
     geocoder = new Geocoder(this); 
     locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
     locationManager.requestLocationUpdates(
                LocationManager.NETWORK_PROVIDER, 
                MINIMUM_TIME_BETWEEN_UPDATES, 
                MINIMUM_DISTANCE_CHANGE_FOR_UPDATES,
                new MyLocationListener()
        );

   Location location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
   System.out.println("loc.."+location);
   if (location != null) 
   {
   String message = String.format("Location \n Longitude: %1$s \n Latitude: %2$s",
                location.getLongitude(), location.getLatitude());
       Toast.makeText(ShowActivity.this, message,
               Toast.LENGTH_LONG).show();
  //acTextView.setText(message);
   try {
          List<Address> addresses = geocoder.getFromLocation(location.getLatitude(), location.getLongitude(), 10); //<10>
          for (Address address : addresses) {
              System.out.println("my location .."+address.getAddressLine(0));
            acTextView.setText(address.getAddressLine(0));
          }



        } catch (IOException e) {
          Log.e("LocateMe", "Could not get Geocoder data", e);
        }
    }
    else
    {
    AlertDialog.Builder alertbox1 = new AlertDialog.Builder(this);
    alertbox1.setMessage("No GPS or network ..Signal please fill the location manually!");
    alertbox1.setNeutralButton("Ok", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface arg0, int arg1) 
    {}});
    alertbox1.show();
    }

}   

我只是在编辑问题而不是问新问题..因为我的问题仍然与相同的问题有关...我没有更改代码中的任何内容,现在一切正常...但是问题是当我使用 GPS_PROVIDER 时,它返回准确的地址以及经度和纬度的值。但是当我使用 NETWORK_PROVIDER 时,它只返回经度和纬度的值,没有地址……我想使用 NETWORK_PROVIDER 检索完整地址因为 GPS 不能在室内工作……我该怎么做?

谢谢...!!

4

6 回答 6

3

请检查您的清单文件。您是否添加了这些权限。

 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"></uses-permission>

查看更新的答案:

protected void showCurrentLocation() 
       {
         geocoder = new Geocoder(this); 
         locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
         locationManager.requestLocationUpdates(
                    LocationManager.NETWORK_PROVIDER, 
                    MINIMUM_TIME_BETWEEN_UPDATES, 
                    MINIMUM_DISTANCE_CHANGE_FOR_UPDATES,
                    myLocationListener
            );
         timer = new Timer();
         timer.schedule(new GetLastLocation(),20000);

       }

     class GetLastLocation extends TimerTask {

            @Override
            public void run() {
                timer.cancel();
                locationManager.removeUpdates(locationListener);
                 Location location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
                   System.out.println("loc.."+location);
                   if (location != null) 
                   {
                   String message = String.format("Location \n Longitude: %1$s \n Latitude: %2$s",
                                location.getLongitude(), location.getLatitude());
                       Toast.makeText(ShowActivity.this, message,
                               Toast.LENGTH_LONG).show();
                  //acTextView.setText(message);
                   try {
                          List<Address> addresses = geocoder.getFromLocation(location.getLatitude(), location.getLongitude(), 10); //<10>
                          for (Address address : addresses) {
                              System.out.println("my location .."+address.getAddressLine(0));
                            acTextView.setText(address.getAddressLine(0));
                          }



                        } catch (IOException e) {
                          Log.e("LocateMe", "Could not get Geocoder data", e);
                        }
                    }
                    else
                    {
                    AlertDialog.Builder alertbox1 = new AlertDialog.Builder(this);
                    alertbox1.setMessage("No GPS or network ..Signal please fill the location manually!");
                    alertbox1.setNeutralButton("Ok", new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface arg0, int arg1) 
                    {}});
                    alertbox1.show();
                    }
                }   
                return;
            }
        }

     /** The location listener. */
        LocationListener myLocationListener = new LocationListener() {

            public void onLocationChanged(Location location) {

            }
            public void onProviderDisabled(String provider) {}
            public void onProviderEnabled(String provider) {}
            public void onStatusChanged(String provider, int status, Bundle extras) {}
        };
于 2011-08-09T10:49:06.553 回答
1

获得 null 的另一个原因locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);是您的网络提供商已关闭。在我的手机上,这是通过设置 -> 位置 -> 使用无线网络切换的。

编辑:

你也可以试试:

LocationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)

查看网络提供商是否已启用或

LocationManager.getProviders(true)

返回任何已启用的提供程序。

有关更多信息,请参阅http://developer.android.com/reference/android/location/LocationManager.htm

于 2011-08-09T11:19:19.443 回答
1

Android 2.3.x SDK(API 9 和 10)模拟器有 GPS 错误。您应该在 2.2 (API 8) 上尝试您的代码

于 2011-09-28T12:17:43.037 回答
1

当我们指定 NETWORK_PROVIDER 来监听位置更新时,

Android 系统利用 wi-fi id 或互联网接入点来确定位置

当没有互联网访问时,它返回空值

也发生在我身上,它没有像预期的那样从手机信号塔获取位置

读到这个:没有 gprs/没有 wi-fi 位置更新

于 2011-11-11T09:07:56.410 回答
0

试试这个代码:

public CurrentLocation(Context ctx) {
    this.context = ctx;

    locationManager = (LocationManager) context
            .getSystemService(Context.LOCATION_SERVICE);
    @SuppressWarnings("unused")
    List<String> providers = locationManager.getAllProviders();

    Criteria locationCritera = new Criteria();
    String providerName = locationManager.getBestProvider(locationCritera,
            true);

    location = locationManager.getLastKnownLocation(providerName);
    locationListener = new MyLocationListener();

    locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0,
            0, locationListener);



}
于 2011-08-09T11:18:37.650 回答
0

使用此代码

if (android.os.Build.VERSION.SDK_INT > 8) {

        StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
        StrictMode.setThreadPolicy(policy);

    }

并检查您的设置 --> 位置和安全 --> 使用无线网络是否启用。

于 2012-12-13T13:02:00.083 回答