Android Studio:AutocompleteFilter.create在SDK更新后无法解析符号

时间:2016-08-19 13:51:02

标签: android

更新到Google Play服务9.4.0后,我丢失/破坏了AutocompleteFilter。

List<Integer> acpFilterTypes = new ArrayList<>();
acpFilterTypes.add(Place.TYPE_GEOCODE);

AutocompleteFilter mAutoCompleteFilter = AutocompleteFilter.create(acpFilterTypes); //<-- .create is not recognized as a symbol. 

这里发生了什么以及为什么我不允许在SDK更新后创建新的AutocompleteFilter?

2 个答案:

答案 0 :(得分:1)

看起来地方已移到单独的库中。

只需添加到build.gradle:

compile "com.google.android.gms:play-services-places:9.4.0"

答案 1 :(得分:0)

我查了一下,这对我有用。
除了添加play-services-location库之外,还需要添加play-services-places库。