5

Service Not Availableときどき、アプリケーションで例外に該当します。ほとんどの場合、問題はありません。しかし、時々それが起こります。(アプリはまだ開発中です)

それを解決する唯一の方法は、ハンドセットを再起動することです。サポート フォーラムの関連する Issue38009。しかし、コメントから私が理解しているのは、デバイスを再起動すると問題が永遠に解決するということです。

これは正しいです?
私の場合、バグが再発する可能性があるためです(頻度:月に1〜2回だと思いますが、このアプリでフルタイムです)。

アプリケーション内からジオコーダーを再起動する方法はありますか?

私が持っている唯一の解決策は、以下のように「手動で」アドレスを取得する場合に備えて、別の解決策を提供することです。他に良いものはありますか?

    Dbg.d(TAG, "=== address_info FetchLocationTask - doInBackground");
new Thread(new Runnable() {

    @Override
    public void run() {
        Looper.prepare();
        mHandler = new Handler();
        Looper.loop();
    }
}).start();

    /**
     * Implementation of a second method in case of failure:
     * 
     */
    double lat = Double.parseDouble(args[0]);
    double lng = Double.parseDouble(args[1]);
    String address = String.format(Locale.ENGLISH,
            "http://maps.googleapis.com/maps/api/geocode/json?latlng="+Double.toString(lat)+","+Double.toString(lng)+"&sensor=true&language="+Locale.getDefault().getCountry(), lat, lng);
    Dbg.d(TAG, "fetching path : "+ address);


    HttpGet httpGet = new HttpGet(address);
    HttpClient client = new DefaultHttpClient();
    HttpResponse response;
    StringBuilder stringBuilder = new StringBuilder();

    List<Address> retList = null;

    try {
        response = client.execute(httpGet);
        HttpEntity entity = response.getEntity();
        InputStream stream = entity.getContent();
        int b;
        while ((b = stream.read()) != -1) {
            stringBuilder.append((char) b);
        }

        JSONObject jsonObject = new JSONObject();
        jsonObject = new JSONObject(stringBuilder.toString());


        retList = new ArrayList<Address>();


        if("OK".equalsIgnoreCase(jsonObject.getString("status"))){
            JSONArray results = jsonObject.getJSONArray("results");
            for (int i=0;i<results.length();i++ ) {
                JSONObject result = results.getJSONObject(i);
                String indiStr = result.getString("formatted_address");
                Address addr = new Address(Locale.ITALY);
                addr.setAddressLine(0, indiStr);
                Dbg.d(TAG, "adresse :"+addr.toString());
                retList.add(addr);
            }
        }


    } catch (ClientProtocolException e) {
        Dbg.e(TAG, "Error calling Google geocode webservice.", e);
    } catch (IOException e) {
        Dbg.e(TAG, "Error calling Google geocode webservice.", e);
    } catch (JSONException e) {
        Dbg.e(TAG, "Error parsing Google geocode webservice response.", e);
    }

    JSONObject jObj = new JSONObject();

    boolean found = false;

    if (retList.size() > 0) {

        Address a = retList.get(0);

        String name = a.getAddressLine(0);
        String city = a.getLocality();
        String postalCode = a.getPostalCode();
        String country = a.getCountryName();

        if (!TextUtils.isEmpty(name)) {
            JsonUtils.setSringInJson(jObj, BookLocation.ADDRESS_NAME_KEY, name);
            found = true;
        }
        if (!TextUtils.isEmpty(postalCode)) {
            JsonUtils.setSringInJson(jObj, BookLocation.ADDRESS_POSTAL_CODE_KEY, postalCode);
            found = true;
        }
        if (!TextUtils.isEmpty(city)) {
            JsonUtils.setSringInJson(jObj, BookLocation.ADDRESS_CITY_KEY, city);
            found = true;
        }
        if (!TextUtils.isEmpty(country)) {
            JsonUtils.setSringInJson(jObj, BookLocation.ADDRESS_COUNTRY_KEY, country);
            found = true;
        }

    }
    mHandler.getLooper().quit();
    if (found) {
        return jObj;
    } else return null;
4

1 に答える 1

0

@mike からのリンクには、GeoCoder ハンドラーと asynctask クラスを使用したフォールバック実装の両方を同期する必要があります。たとえば、URL からアドレスを取得できるサービスがない場合などです。残念ながら、これは私たちが提供できる唯一の解決策です@Poutrathor.

ここを参照してくださいService not Available - Geocoder Android

また、ユーザーに再起動を強制することはできませんが、少なくとも解決策をお知らせします。

于 2013-10-08T07:26:23.263 に答える