Home | History | Annotate | Download | only in search

Lines Matching full:searchable

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
83 <h2 id="create-sc">Create a Searchable Configuration</h2>
85 <p>A <a href="http://developer.android.com/guide/topics/search/searchable-config.html">searchable
87 <code>res/xml/searchable.xml</code> file. At a minimum, a searchable configuration must contain
96 &lt;searchable xmlns:android="http://schemas.android.com/apk/res/android"
102 <code>&lt;meta-data&gt;</code></a> element that points to the <code>res/xml/searchable.xml</code> file,
108 &lt;meta-data android:name="android.app.searchable"
109 android:resource="@xml/searchable" /&gt;
115 created before, associate the searchable configuration with the {@link android.widget.SearchView}
123 // Associate searchable configuration with the SearchView
136 {@link android.app.SearchableInfo} object that is created from the searchable configuration XML
137 file. When the searchable configuration is correctly associated with your {@link
142 <h2 id="create-sa">Create a Searchable Activity</h2>
145 android.content.Intent#ACTION_SEARCH} when a user submits a search query. A searchable activity
147 some sort of data set. To create a searchable activity, declare an activity of your choice to
159 <p>In your searchable activity, handle the {@link android.content.Intent#ACTION_SEARCH} intent by
162 <p class="note"><strong>Note:</strong> If your searchable activity launches in single top mode
196 start your searchable activity with the {@link android.content.Intent#ACTION_SEARCH} intent. It