在Android中实现搜索栏

时间:2011-11-04 05:12:29

标签: android search

我正在为三星Galaxy S2开发一款应用程序,版本2.3.3。我想在它上面实现搜索栏。任何人都可以帮我这个。我试过android开发者指南,但一切都是徒劳的。任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:1)

制作一个可搜索的文字:

     <searchable xmlns:android="http://schemas.android.com/apk/res/android"
   android:label="@string/search_label"
   android:searchSettingsDescription="@string/settings_description"
   android:includeInGlobalSearch="true"
   android:searchSuggestAuthority="dictionary"
   android:searchSuggestIntentAction="android.intent.action.VIEW">
</searchable>

您必须参考以下链接。它会帮助您。

http://developer.android.com/resources/articles/qsb.html

答案 1 :(得分:0)

您需要(1)像ekjyot刚刚建议的可搜索的文件夹和(2)内容提供商。这是一个相当不错的大小项目,所以希望你已经拥有一些Android体验。一篇AWESOME资源是Android开发人员网站上的这篇文章:http://developer.android.com/resources/articles/qsb.html。祝你好运,如果你有具体问题,请回来!