简体   繁体   English

如何在我们的应用程序中添加快速搜索框?

[英]How to add quick search box to our application?

如何在我们的应用程序中添加快速搜索框(QSB)?

Check this page on more info about the QSB in android. 查看此页面 ,了解有关android中QSB的更多信息。

and add this to your activity in the manifest 并将其添加到清单中的活动中

<activity android:name=".MyActivity" >
    <intent-filter>
        <action android:name="android.intent.action.SEARCH" />
    </intent-filter>
    <meta-data android:name="android.app.searchable"
               android:resource="@xml/searchable"/>
</activity>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM