gpt4 book ai didi

android - 尽管已声明,但无法在 list 中找到类

转载 作者:行者123 更新时间:2023-12-02 04:25:37 25 4
gpt4 key购买 nike

我正在使用新的 Google Places SDK 和我的嵌入式 fragment ,它要求我声明 AutocompleteActivity

这里是错误:

android.content.ActivityNotFoundException: Unable to find explicit activity class {com.activehours.debug/com.google.android.libraries.places.widget.AutocompleteActivity}; have you declared this activity in your AndroidManifest.xml?

我的 list :

<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.activehours"
android:versionCode="0"
android:versionName="9.1"
>
<application
android:allowBackup="true"
android:icon="${AppIcon}"
android:roundIcon="${AppIconRound}"
android:label="${AppName}"
android:name=".core.ActiveHours"
android:theme="@style/AHTheme"
>
...
<activity
android:name="com.google.android.libraries.places.widget.AutocompleteActivity"
android:theme="@style/PlacesAutocompleteThemeOverlay">
</activity>

...
</application>

不确定我做错了什么。

最佳答案

如文档中所述

Caution: Do NOT launch the AutcompleteActivity directly. Instead, use an intent to launch Autocomplete (PlaceAutocomplete in the compatibility library).

您不应该在 list 中将此声明为 Activity 。只需发送一个启动 AutoCompleteActivity 的 Intent 并在 onActivityResult 回调中监听结果。

关于android - 尽管已声明,但无法在 list 中找到类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54775395/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com