可以使用LocationRequest.Builder来创建LocationRequest对象,而不必直接访问LocationRequest类。示例代码如下:
LocationRequest locationRequest = new LocationRequest.Builder()
.setInterval(10000)
.setFastestInterval(5000)
.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY)
.build();
该代码示例创建一个LocationRequest对象,设置了请求位置的间隔时间、最快间隔时间和优先级,并通过build()方法构建了对象。通过使用LocationRequest.Builder,我们可以有效地避免了直接访问私有的LocationRequest类的问题。