gpt4 book ai didi

android - 可搜索 Activity 未调用,当我使用 applicationIdSuffix '.debug'

转载 作者:行者123 更新时间:2023-11-29 01:15:23 26 4
gpt4 key购买 nike

当我为调试版本使用调试后缀时,我的可搜索 Activity 未调用。没有后缀一切正常。

构建.gradle

debug {
debuggable true
applicationIdSuffix '.debug'
}

list

<activity
android:name=".ui.search.SearchableActivity"
android:label=""
android:theme="@style/AppTheme.NoActionBar"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>

<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>

<meta-data
android:name="android.app.default_searchable"
android:value=".ui.search.SearchableActivity" />

可搜索.xm

<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:label="@string/app_name"
android:hint="@string/action_search"
android:voiceSearchMode="showVoiceSearchButton|launchRecognizer">
</searchable>

最佳答案

遇到了同样的问题。这是因为 applicationIdSuffix 改变了包名。这是 searchView 启动的一个技巧,而不是:

srchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));

你应该创建新的 ComponentName:

srchView.setSearchableInfo(searchManager.getSearchableInfo(new ComponentName(this, SearchableActivity.class)));

在这种情况下,您将获得有效的 SearchableInfo

感谢this question有 packageNameSuffix 问题

关于android - 可搜索 Activity 未调用,当我使用 applicationIdSuffix '.debug',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40083258/

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