这是我的.xml文件
我添加了PlaceAutocompleteFragment,但它显示了未解析的类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" />
这是我的傻瓜。 我不知道我的错误在哪里,请验证我的代码并告知错误在哪里。
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'
答案 0 :(得分:2)
您必须添加此依赖项,它用于Google地方
compile 'com.google.android.gms:play-services-places:11.8.0'