Lines Matching refs:search
4 next.link=search.html
13 <li><a href="{@docRoot}training/search/setup.html#add-sv">Add the Search View to the App
16 <li><a href="{@docRoot}training/search/setup.html#create-sc">Create a Searchable
19 <li><a href="{@docRoot}training/search/setup.html#create-sa">Create a Searchable
32 the app bar is the preferred way to provide search in your app. Like with all items in
35 android.widget.SearchView} as an icon initially, then takes up the entire app bar as a search
46 This code defines how to create the search item, such as the icon to use and the title of the
55 <item android:id="@+id/search"
85 <p>A <a href="http://developer.android.com/guide/topics/search/searchable-config.html">searchable
91 …ng an <code>android:hint</code> attribute to give the user an idea of what to enter into the search
127 (SearchView) menu.findItem(R.id.search).getActionView();
140 activity that can filter for this intent and handle the search query.</p>
145 android.content.Intent#ACTION_SEARCH} when a user submits a search query. A searchable activity
188 //use the query to search your data somehow
197 is now up to you to figure out how to store and search your data given a query.</p>