Hello i am making an small application in which i want search functionality i had done surfing on Internet but i didn’t get anything useful.
could you give any tutorial or anything so that i can made search functionality in my application.
Hello i am making an small application in which i want search functionality i
Share
You should take a very close look to the Search section on Android developper website.
Basically you need to create a Searchable activity in your application by declaring it in the manifest :
This activity will handle any search request made when the user uses his phone’s search button. The search query (what the user typed in the text field) will appear in the intent calling your search activity. You can use it like this in your activity onResume() method :