Android 地点 API PlaceType 不存在?
Android Places API PlaceTypes nonexistent?
我只想要 City/Zip 在 Android 中自动完成。我知道我可以使用浏览器 API 键手动完成并解析 JSON 响应,但当然我很想避免悲伤并利用 Android 库:
This tutorial states that you can simply pass in an optional AutocompleteFilter
, which wants a Collection<Integer> placeTypes
, which I can only assume comes from PlaceTypes
,当然只提供 "ALL"...
我知道有很多 Place Types 可供选择,所以这个 class/API 是还没有充实还是什么?
我在 Android Studio 1.1 中使用 Places API for Android(使用 Gradle:compile 'com.google.android.gms:play-services-location:7.0.0'
)。
这是我们文档中的错误。现在您可以在 Place object 上找到其余的 Place Type 常量。对于给您带来的不便,我们深表歉意 - 我们希望在下一个 Google Play 服务版本中修复此问题!
我只想要 City/Zip 在 Android 中自动完成。我知道我可以使用浏览器 API 键手动完成并解析 JSON 响应,但当然我很想避免悲伤并利用 Android 库:
This tutorial states that you can simply pass in an optional AutocompleteFilter
, which wants a Collection<Integer> placeTypes
, which I can only assume comes from PlaceTypes
,当然只提供 "ALL"...
我知道有很多 Place Types 可供选择,所以这个 class/API 是还没有充实还是什么?
我在 Android Studio 1.1 中使用 Places API for Android(使用 Gradle:compile 'com.google.android.gms:play-services-location:7.0.0'
)。
这是我们文档中的错误。现在您可以在 Place object 上找到其余的 Place Type 常量。对于给您带来的不便,我们深表歉意 - 我们希望在下一个 Google Play 服务版本中修复此问题!