gpt4 book ai didi

安卓全局搜索

转载 作者:行者123 更新时间:2023-12-05 00:07:32 24 4
gpt4 key购买 nike

我正在尝试将我的应用程序添加到 Android 的全局搜索中,以便用户可以从他们的主屏幕搜索我的应用程序。我已按照 http://developer.android.com/guide/topics/search/search-dialog.html 上的教程进行操作但它似乎不起作用。当我测试该应用程序并转到您看到所有可搜索应用程序的设置部分时,我的应用程序没有显示。这是我的一些代码:

主要节日:

    <intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>

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

这当然在标签内。

searchable.xml (res/xml/searchable.xml):

<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:includeInGlobalSearch="true"
android:voiceSearchMode="showVoiceSearchButton"
android:label="Holo Wikipedia Search"
android:hint="Search Wikipedia" >
</searchable>

如果还有什么想看的请留言:)

最佳答案

您是否尝试过使用字符串资源作为标签和提示?

代替硬编码字符串,尝试这样的事情:

android:label="@string/label_string"
android:hint="@string/hint_string"

关于安卓全局搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14184573/

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