Skip to content Skip to sidebar Skip to footer

Android How To Place A Quick Search Box In Application

I want to develop an app which connect with the server and a quick search box should be there which should work as Google search. How can I do that? Please give me a sample example

Solution 1:

Make it searcheble

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

Add QSB To your app BUT 2.2 Dosen't Support is Yet

http://shapingclouds.com/2009/10/19/how-add-searchmanager-quick-search-to-your-android-application/

Further info

Post a Comment for "Android How To Place A Quick Search Box In Application"