未解决 class PlaceAutocompleteFragment
unresolved class PlaceAutocompleteFragment
这是我的 .xml 文件
我添加了 PlaceAutocompleteFragment,但它显示未解析 class PlaceAutocompleteFragment。我检查了依赖文件,所有的东西都被添加了。
<fragment
android:id="@+id/autocomplete_fragment"
android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
这是我的gradle。
我不知道我的错误在哪里,请验证我的代码并告诉我错误在哪里。
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.google.android.gms:play-services-maps:11.8.0'
implementation 'com.google.android.gms:play-services-location:11.8.0'
testImplementation 'junit:junit:4.12'
testImplementation 'com.android.support.test:runner:1.0.1'
testImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
你必须添加这个依赖,它用于google个地方
compile 'com.google.android.gms:play-services-places:11.8.0'
这是我的 .xml 文件
我添加了 PlaceAutocompleteFragment,但它显示未解析 class PlaceAutocompleteFragment。我检查了依赖文件,所有的东西都被添加了。
<fragment
android:id="@+id/autocomplete_fragment"
android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
这是我的gradle。 我不知道我的错误在哪里,请验证我的代码并告诉我错误在哪里。
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.google.android.gms:play-services-maps:11.8.0'
implementation 'com.google.android.gms:play-services-location:11.8.0'
testImplementation 'junit:junit:4.12'
testImplementation 'com.android.support.test:runner:1.0.1'
testImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
你必须添加这个依赖,它用于google个地方
compile 'com.google.android.gms:play-services-places:11.8.0'