Android Geocoder bazı cihazlarda farklı davranır

oy
0

Bunun bazı cihazlarda mükemmel çalışıyor ve diğerlerinde fonksiyon, aşağıdaki kodu var getFromLocationName boyutu 0 ile listesini döndürür.

Örneğin, Nexus 6pdoğru bir sonuç verir ve Meizu MX5bu boyut 0 olan bir listesini verir.

Aynı izinleri ve GPS hem cihazlar için etkinleştirme var. Android sürüm Nexus 6p7.1.2 ve üzerinde Meizu MX55.1 olduğunu

  Geocoder geocoder = new Geocoder(context);
  List<Address> addresses = geocoder.getFromLocationName(place, 3);

Notlar :

  1. yer kullanıcının girdiği konum (String) olduğunu.
  2. Geocoder android.location.Geocoder kadardır;

Öyleyse neden fark? o cihazlarda Android sürümü ile ilişkili mi?

Oluştur 02/11/2017 saat 07:58
kaynak kullanıcı
Diğer dillerde...                            


1 cevaplar

oy
2

Android'de Geocoder gerçekten tüm cihazlarda aynı davranışı yok edilir. Ben aşağıdaki cihazlarla Geocoder test ettik:

  • Samsung (Android 4.4 ve 5.1)
  • Lenovo (Android 5.0)
  • Vivo (Android 6.0.1)
  • Andromax (Android 5.1.1)
  • Xiaomi (Android 5.1)

Tüm cihazlar listesini dönen ama Xiaomi, sıfır listeleri döndürür. Yani, biz geocoder bağlı olamaz. Solüsyon kullanarak kendi Geocoder uygulaması yaratmaktır Google Geocoding API ve liste 0 döndürür zaman kullanabilirsiniz.

İşte Geocoder kullanmak gibi exatly kullanılabilir (SO onu buldum, ama kaynağını hatırlayamıyorum) geocoder uygulanması:

import android.location.Address;
import android.util.Log;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

public class MyGeocoder {

  public static final String TAG = MyGeocoder.class.getSimpleName();

  static OkHttpClient client = new OkHttpClient();

  public static List<Address> getFromLocation(double lat, double lng, int maxResult) {

    String address = String.format(Locale.US,
        "https://maps.googleapis.com/maps/api/geocode/json?latlng=%1$f,%2$f&sensor=false&language="
            + Locale.getDefault().getCountry(), lat, lng);
    Log.d(TAG, "address = " + address);
    Log.d(TAG, "Locale.getDefault().getCountry() = " + Locale.getDefault().getCountry());

    return getAddress(address, maxResult);

  }

  public static List<Address> getFromLocationName(String locationName, int maxResults)  {

    String address = null;
    try {
      address = "https://maps.google.com/maps/api/geocode/json?address=" + URLEncoder.encode(locationName,
          "UTF-8") + "&ka&sensor=false";
      return getAddress(address, maxResults);
    } catch (UnsupportedEncodingException e) {
      e.printStackTrace();
    }
    return null;
  }

  private static List<Address> getAddress(String url, int maxResult) {
    List<Address> retList = null;

    Request request = new Request.Builder().url(url)
        .header("User-Agent", "OkHttp Headers.java")
        .addHeader("Accept", "application/json; q=0.5")
        .build();
    try {
      Response response = client.newCall(request).execute();
      String responseStr = response.body().string();
      JSONObject jsonObject = new JSONObject(responseStr);

      retList = new ArrayList<Address>();

      if ("OK".equalsIgnoreCase(jsonObject.getString("status"))) {
        JSONArray results = jsonObject.getJSONArray("results");
        if (results.length() > 0) {
          for (int i = 0; i < results.length() && i < maxResult; i++) {
            JSONObject result = results.getJSONObject(i);
            Address addr = new Address(Locale.getDefault());

            JSONArray components = result.getJSONArray("address_components");
            String streetNumber = "";
            String route = "";
            for (int a = 0; a < components.length(); a++) {
              JSONObject component = components.getJSONObject(a);
              JSONArray types = component.getJSONArray("types");
              for (int j = 0; j < types.length(); j++) {
                String type = types.getString(j);
                if (type.equals("locality")) {
                  addr.setLocality(component.getString("long_name"));
                } else if (type.equals("street_number")) {
                  streetNumber = component.getString("long_name");
                } else if (type.equals("route")) {
                  route = component.getString("long_name");
                }
              }
            }
            addr.setAddressLine(0, route + " " + streetNumber);

            addr.setLatitude(
                result.getJSONObject("geometry").getJSONObject("location").getDouble("lat"));
            addr.setLongitude(
                result.getJSONObject("geometry").getJSONObject("location").getDouble("lng"));
            retList.add(addr);
          }
        }
      }
    } catch (IOException e) {
      Log.e(TAG, "Error calling Google geocode webservice.", e);
    } catch (JSONException e) {
      Log.e(TAG, "Error parsing Google geocode webservice response.", e);
    }

    return retList;
  }
}

Unutmayın Android Geocoder API olmadı günlük kota.

Cevap 02/11/2017 saat 10:18
kaynak kullanıcı

Cookies help us deliver our services. By using our services, you agree to our use of cookies. Learn more