android - geocoder.getfromlocationname返回服务不可用

时间:2012-10-05 06:07:37

标签: android

我手机上有这个奇怪的错误(Not Emulator)。 我编写了一个代码按钮,其中包含导航到输入的第一个结果的edittext。 它工作了几天,当我继续devlopibg它突然停止工作。 什么是奇怪的是我安装了早期版本并且它没有用。 具体的代码部分从那以后没有变化! 此外,我在另一部手机上安装了最新版本,但突然间它也没有工作。 我不知道如何解决它,我不明白为什么我得到这个错误。 为什么它突然说服务不可用,如果它以前工作? 这是代码:

configure Search button//Button btn_search = (Button)findViewById(R.id.map_ ;(search_button if(!came_from.matches(" (("FollowLocation } ;(btn_search.setEnabled(false { btn_search.setOnClickListener( } ()new OnClickListener } (public void onClick(View v final AlertDialog.Builder ;(alert = new AlertDialog.Builder(context final EditText input = new ;(EditText(context input.setHint("Enter ;("Address input.setImeOptions( ;(EditorInfo.IME_ACTION_DONE ;(alert.setView(input alert.setPositiveButton("OK", } ()new DialogInterface.OnClickListener public void onClick(DialogInterface dialog, int } (whichButton String value = ;()input.getText().toString().trim } try Geocoder geocoder =

Geocoder(getApplicationContext(), ;(Locale.ENGLISH List<Address> results

;(geocoder.getFromLocationName(value, 1

} (if (results.size() == 0

AlertDialog.Builder builder2 = new ;(AlertDialog.Builder(context

builder2.setMessage("No Address Found, ("Please Try Again

(setCancelable(true.

setNegativeButton("OK", new. } ()DialogInterface.OnClickListener public } (void onClick(DialogInterface dialog, int id

;()dialog.cancel { ({ ;()show. { else } Address ;(address = results.get(0 GeoPoint p = (new GeoPoint((int address.getLatitude() * 1E6), (int)) ;(((address.getLongitude() * 1E6 gMapView = ;((MapView) findViewById(R.id.myGMap mc = ;()gMapView.getController

;(mc.setZoom(18

;(mc.animateTo(p

remove//previous overlays and put this location as circle

;()gMapView.getOverlays().clear Add a //

MyLocationOverlay circleOverlay = new ;()MyLocationOverlay

;circleOverlay.circle=true list = ;()gMapView.getOverlays

;(list.add(circleOverlay {

} (catch (Exception e {

AlertDialog.Builder builder2 = new ;(AlertDialog.Builder(context

builder2.setMessage("Error. Please check

(".internet connection

(setCancelable(true.

setNegativeButton("OK", new. } ()DialogInterface.OnClickListener public } (void onClick(DialogInterface dialog, int id

;()dialog.cancel { ({ ;()show. {

{ ;({ alert.setNegativeButton(" Cancel", new } ()DialogInterface.OnClickListener public void onClick(DialogInterface dialog, int } (whichButton ;()dialog.cancel { ;({ ;()alert.show { ;({

1 个答案:

答案 0 :(得分:3)

我的问题的答案是重新启动手机。