首页 > 其他分享> > 不推荐使用getPlaceDetectionClient(android.app.Activity,com.google.android.gms.location.places.PlacesOptio
不推荐使用getPlaceDetectionClient(android.app.Activity,com.google.android.gms.location.places.PlacesOptio
作者:互联网
Android Studio 3.1.4
placeDetectionClient = Places.getPlaceDetectionClient(this, null);
给出错误:
getPlaceDetectionClient(android.app.Activity, com.google.android.gms.location.places.PlacesOptions) is deprecated
任何想法使用什么代替?谢谢
解决方法:
你读过API reference吗?
getPlaceDetectionClient(Context context,PlacesOptions选项)已替换为getPlaceDetectionClient(Context context).只需删除null参数即可.
那也不是错误.这是一个警告,可以安全地忽略调试目的.
标签:android,google-places-api 来源: https://codeday.me/bug/20190731/1586611.html