gpt4 book ai didi

android - 谷歌地图 v2 中是否弃用了 'constructor LocationRequest()'?

转载 作者:行者123 更新时间:2023-12-03 15:15:34 29 4
gpt4 key购买 nike

我最近偶然发现了这条消息,我很确定这个构造函数在 18.0.0 之前的版本中没有被弃用,但是我在任何地方都找不到这个构造函数已经被弃用的信息。
我们应该改用什么,有没有另一种方法来创建 locationRequest ?
message complaining that LocationRequest() is deprecated

最佳答案

是的,LocationRequest 构造函数已被弃用。你可以使用它的静态方法LocationRequest.create()创建位置请求。
Kotlin :

locationRequest = LocationRequest.create().apply {
interval = 100
fastestInterval = 50
priority = LocationRequest.PRIORITY_HIGH_ACCURACY
maxWaitTime = 100
}
java :
locationRequest = LocationRequest.create()
.setInterval(100)
.setFastestInterval(3000)
.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY)
.setMaxWaitTime(100);
更新
正如@Shimon 指出的 LocationRequest.PRIORITY_HIGH_ACCURACY 现在已弃用,因此请改用
Priority.PRIORITY_HIGH_ACCURACY

关于android - 谷歌地图 v2 中是否弃用了 'constructor LocationRequest()'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66489605/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com