android Kotlin地理编码器.getFromLocationName挂起

li9yvcax  于 2022-11-20  发布在  Android
关注(0)|答案(1)|浏览(142)

因此,我尝试在Kotlin中使用geocoder.getFromLocationName()将文本地址转换为坐标

import android.location.Geocoder

val geocoder = Geocoder(context, Locale.getDefault())
try {
    val result = geocoder.getFromLocationName(club.location, 1) // it gets hung here before throw!!
    Log.d(LOG_TAG, "${club.location} translates into cordinates : ${result[0].latitude}, ${result[0].longitude}")
}
catch (ex : Exception){
    Log.d(LOG_TAG, "${ex.message}")
}

但它总是会捕捉到异常

Caused by: java.io.IOException: DEADLINE_EXCEEDED: ClientCall started after deadline exceeded: -15.077367176s from now
                                                                                                        at android.location.Geocoder$SynchronousGeocoder.getResults(Geocoder.java:388)
                                                                                                        at android.location.Geocoder.getFromLocationName(Geocoder.java:277)
                                                                                                        at android.location.Geocoder.getFromLocationName(Geocoder.java:202)

Android中的地理编码器不工作了吗?很难相信..还是我错过了什么?
我试着在网上查找,但没有找到有用的回复

wfveoks0

wfveoks01#

好吧,看起来模拟器不适用于地理编码器,但真实的物理设备可以工作

相关问题