我正在开发一个依靠网络获取一些位置信息的应用程序。一切都运行正常,除了有时互联网很慢,并且Geocoder类在发送结果之前超时。
Geocoder geocoder = new Geocoder(mContext, Locale.getDefault());
我试过调查地理编码器的方法,但是没有超时。 我怎样才能解决这个问题?
<小时/> PS:addresses = geocoder.getFromLocation(lat, lon, 1);
在asynctask的doInBackground()里面。
感谢。