|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectandroid.app.SearchManager
public class SearchManager
This class provides access to the system search services.
In practice, you won't interact with this class directly, as search
services are provided through methods in Activity
methods and the the ACTION_SEARCH
Intent. This class does provide a basic
overview of search services and how to integrate them with your activities.
If you do require direct access to the Search Manager, do not instantiate
this class directly; instead, retrieve it through
context.getSystemService(Context.SEARCH_SERVICE).
Topics covered here:
The ability to search for user, system, or network based data is considered to be a core user-level feature of the android platform. At any time, the user should be able to use a familiar command, button, or keystroke to invoke search, and the user should be able to search any data which is available to them. The goal is to make search appear to the user as a seamless, system-wide feature.
In terms of implementation, there are three broad classes of Applications:
These categories, as well as related topics, are discussed in the sections below.
Even if your application is not searchable, it can still support the invocation of search. Please review the section How Search Is Invoked for more information on how to support this.
Many applications are searchable. These are the applications which can convert a query string into a list of results. Within this subset, applications can be grouped loosely into two families:
Generally speaking, you would use query search for network-based data, and filter search for local data, but this is not a hard requirement and applications are free to use the model that fits them best (or invent a new model).
It should be clear that the search implementation decouples "search invocation" from "searchable". This satisfies the goal of making search appear to be "universal". The user should be able to launch any search from almost any context.
Unless impossible or inapplicable, all applications should support invoking the search UI. This means that when the user invokes the search command, a search UI will be presented to them. The search command is currently defined as a menu item called "Search" (with an alphabetic shortcut key of "S"), or on some devices, a dedicated search button key.
If your application is not inherently searchable, you can also allow the search UI to be invoked in a "web search" mode. If the user enters a search term and clicks the "Search" button, this will bring the browser to the front and will launch a web-based search. The user will be able to click the "Back" button and return to your application.
In general this is implemented by your activity, or the Activity
base class, which captures the search command and invokes the Search Manager to
display and operate the search UI. You can also cause the search UI to be presented in response
to user keystrokes in your activity (for example, to instantly start filter searching while
viewing a list and typing any key).
The search UI is presented as a floating
window and does not cause any change in the activity stack. If the user
cancels search, the previous activity re-emerges. If the user launches a
search, this will be done by sending a search Intent (see below),
and the normal intent-handling sequence will take place (your activity will pause,
etc.)
What you need to do: First, you should consider the way in which you want to handle invoking search. There are four broad (and partially overlapping) categories for you to choose from.
How to define a search menu. The system provides the following resources which may be useful when adding a search item to your menu:
SearchManager.MENU_KEY is the recommended alphabetic shortcut.How to invoke search directly. In order to invoke search directly, from a button
or menu item, you can launch a generic search by calling
onSearchRequested as shown:
onSearchRequested();
How to implement type-to-search. While setting up your activity, call
setDefaultKeyMode:
setDefaultKeyMode(DEFAULT_KEYS_SEARCH_LOCAL); // search within your activity setDefaultKeyMode(DEFAULT_KEYS_SEARCH_GLOBAL); // search using platform global search
How to enable web-based search. In addition to searching within your activity or application, you can also use the Search Manager to invoke a platform-global search, typically a web search. There are two ways to do this:
Activity.onSearchRequested(), or via a direct call to
Activity.startSearch(java.lang.String, boolean, android.os.Bundle, boolean). This is most useful if you wish to provide local
searchability and access to global search.How to disable search from your activity. search is a system-wide feature and users
will expect it to be available in all contexts. If your UI design absolutely precludes
launching search, override onSearchRequested
as shown:
@Override
public boolean onSearchRequested() {
return false;
}
Managing focus and knowing if Search is active. The search UI is not a separate activity, and when the UI is invoked or dismissed, your activity will not typically be paused, resumed, or otherwise notified by the methods defined in Activity Lifecycle. The search UI is handled in the same way as other system UI elements which may appear from time to time, such as notifications, screen locks, or other system alerts:
When the search UI appears, your activity will lose input focus.
When the search activity is dismissed, there are three possible outcomes:
setOnDismissListener(android.app.SearchManager.OnDismissListener) and setOnCancelListener(android.app.SearchManager.OnCancelListener) if you
required direct notification of search dialog dismissals.Intent, your activity will receive the
normal sequence of activity pause or stop notifications.Intent, you will receive notification via the
onNewIntent() method.This list is provided in order to clarify the ways in which your activities will interact with the search UI. More details on searchable activities and search intents are provided in the sections below.
Query-search applications are those that take a single query (e.g. a search string) and present a set of results that may fit. Primary examples include web queries, map lookups, or email searches (with the common thread being network query dispatch). It may also be the case that certain local searches are treated this way. It's up to the application to decide.
What you need to do: The following steps are necessary in order to implement query search.
ACTION_SEARCH
Intent. The text to search (query string) for is provided by
calling
getStringExtra(SearchManager.QUERY).singleTop launchMode flag. This allows the system
to launch searches from/to the same activity without creating a pile of them on the
activity stack. If you do this, be sure to also override
onNewIntent to handle the
updated intents (with new queries) as they arrive.Code snippet showing handling of intents in your search activity:
@Override
protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
final Intent queryIntent = getIntent();
final String queryAction = queryIntent.getAction();
if (Intent.ACTION_SEARCH.equals(queryAction)) {
doSearchWithIntent(queryIntent);
}
}
private void doSearchWithIntent(final Intent queryIntent) {
final String queryString = queryIntent.getStringExtra(SearchManager.QUERY);
doSearchWithQuery(queryString);
}
Filter-search applications are those that use live text entry (e.g. keystrokes)) to display and continuously update a list of results. Primary examples include applications that use locally-stored data.
Filter search is not directly supported by the Search Manager. Most filter search
implementations will use variants of Filterable, such as a
ListView bound to a SimpleCursorAdapter. However,
you may find it useful to mix them together, by declaring your filtered view searchable. With
this configuration, you can still present the standard search dialog in all activities
within your application, but transition to a filtered search when you enter the activity
and display the results.
A powerful feature of the Search Manager is the ability of any application to easily provide live "suggestions" in order to prompt the user. Each application implements suggestions in a different, unique, and appropriate way. Suggestions be drawn from many sources, including but not limited to:
Another feature of suggestions is that they can expose queries or results before the user
ever visits the application. This reduces the amount of context switching required, and helps
the user access their data quickly and with less context shifting. In order to provide this
capability, suggestions are accessed via a
Content Provider.
The primary form of suggestions is known as queried suggestions and is based on query text that the user has already typed. This would generally be based on partial matches in the available data. In certain situations - for example, when no query text has been typed yet - an application may also opt to provide zero-query suggestions. These would typically be drawn from the same data source, but because no partial query text is available, they should be weighted based on other factors - for example, most recent queries or most recent results.
Overview of how suggestions are provided. When the search manager identifies a particular activity as searchable, it will check for certain metadata which indicates that there is also a source of suggestions. If suggestions are provided, the following steps are taken.
Content Provider.Content Provider will create a
Cursor which can iterate over the possible suggestions.ACTION_SEARCH type of
Intent.ACTION_SEARCH (in order to launch a query), or it
might be a ACTION_VIEW, in order to proceed directly
to display of specific data.Simple Recent-Query-Based Suggestions. The Android framework provides a simple Search Suggestions provider, which simply records and replays recent queries. For many applications, this will be sufficient. The basic steps you will need to do, in order to use the built-in recent queries suggestions provider, are as follows:
SearchRecentSuggestionsProvider.SearchRecentSuggestions.saveRecentQuery(java.lang.String, java.lang.String).
For complete implementation details, please refer to
SearchRecentSuggestionsProvider. The rest of the information in this
section should not be necessary, as it refers to custom suggestions providers.
Creating a Customized Suggestions Provider: In order to create more sophisticated suggestion providers, you'll need to take the following steps:
Intent messages; Unlike simple queries, you have quite a bit of
flexibility in forming those intents. A query search application will probably
wish to continue receiving the ACTION_SEARCH
Intent, which will launch a query search using query text as
provided by the suggestion. A filter search application will probably wish to
receive the ACTION_VIEW
Intent, which will take the user directly to a selected entry.
Other interesting suggestions, including hybrids, are possible, and the suggestion provider
can easily mix-and-match results to provide a richer set of suggestions for the user. Finally,
you'll need to update your searchable activity (or other activities) to receive the intents
as you've defined them.Configuring your Content Provider to Receive Suggestion Queries. The basic job of
a search suggestions Content Provider is to provide
"live" (while-you-type) conversion of the user's query text into a set of zero or more
suggestions. Each application is free to define the conversion, and as described above there are
many possible solutions. This section simply defines how to communicate with the suggestion
provider.
The Search Manager must first determine if your package provides suggestions. This is done by examination of your searchable meta-data XML file. The android:searchSuggestAuthority attribute, if provided, is the signal to obtain & display suggestions.
Every query includes a Uri, and the Search Manager will format the Uri as shown:
content:// your.suggest.authority / your.suggest.path / SearchManager.SUGGEST_URI_PATH_QUERY
Your Content Provider can receive the query text in one of two ways.
Uri.getPathSegments() and
Uri.getLastPathSegment() for helpful utilities you can use here.)Handling empty queries. Your application should handle the "empty query" (no user text entered) case properly, and generate useful suggestions in this case. There are a number of ways to do this; Two are outlined here:
The Format of Individual Suggestions. Your suggestions are communicated back to the
Search Manager by way of a Cursor. The Search Manager will
usually pass a null Projection, which means that your provider can simply return all appropriate
columns for each suggestion. The columns currently defined are:
| Column Name | Description | Required? |
|---|---|---|
SUGGEST_COLUMN_FORMAT |
Unused - can be null. | No |
SUGGEST_COLUMN_TEXT_1 |
This is the line of text that will be presented to the user as the suggestion. | Yes |
SUGGEST_COLUMN_TEXT_2 |
If your cursor includes this column, then all suggestions will be provided in a two-line format. The data in this column will be displayed as a second, smaller line of text below the primary suggestion, or it can be null or empty to indicate no text in this row's suggestion. | No |
SUGGEST_COLUMN_ICON_1 |
If your cursor includes this column, then all suggestions will be provided in an icons+text format. This value should be a reference (resource ID) of the icon to draw on the left side, or it can be null or zero to indicate no icon in this row. You must provide both cursor columns, or neither. | No, but required if you also have SUGGEST_COLUMN_ICON_2 |
SUGGEST_COLUMN_ICON_2 |
If your cursor includes this column, then all suggestions will be provided in an icons+text format. This value should be a reference (resource ID) of the icon to draw on the right side, or it can be null or zero to indicate no icon in this row. You must provide both cursor columns, or neither. | No, but required if you also have SUGGEST_COLUMN_ICON_1 |
SUGGEST_COLUMN_INTENT_ACTION |
If this column exists and this element exists at the given row, this is the action that will be used when forming the suggestion's intent. If the element is not provided, the action will be taken from the android:searchSuggestIntentAction field in your XML metadata. At least one of these must be present for the suggestion to generate an intent. Note: If your action is the same for all suggestions, it is more efficient to specify it using XML metadata and omit it from the cursor. | No |
SUGGEST_COLUMN_INTENT_DATA |
If this column exists and this element exists at the given row, this is the data that will be used when forming the suggestion's intent. If the element is not provided, the data will be taken from the android:searchSuggestIntentData field in your XML metadata. If neither source is provided, the Intent's data field will be null. Note: If your data is the same for all suggestions, or can be described using a constant part and a specific ID, it is more efficient to specify it using XML metadata and omit it from the cursor. | No |
SUGGEST_COLUMN_INTENT_DATA_ID |
If this column exists and this element exists at the given row, then "/" and this value will be appended to the data field in the Intent. This should only be used if the data field has already been set to an appropriate base string. | No |
SUGGEST_COLUMN_QUERY |
If this column exists and this element exists at the given row, this is the data that will be used when forming the suggestion's query. | Required if suggestion's action is
ACTION_SEARCH, optional otherwise. |
| Other Columns | Finally, if you have defined any Action Keys and you wish for them to have suggestion-specific definitions, you'll need to define one additional column per action key. The action key will only trigger if the currently-selection suggestion has a non-empty string in the corresponding column. See the section on Action Keys for additional details and implementation steps. | No |
Clearly there are quite a few permutations of your suggestion data, but in the next section we'll look at a few simple combinations that you'll select from.
The Format Of Intents Sent By Search Suggestions. Although there are many ways to configure these intents, this document will provide specific information on just a few of them.
Intent will be formatted
exactly like those sent when the user enters query text and clicks the "GO" button:
ACTION_SEARCH provided
using your XML metadata (android:searchSuggestIntentAction).ACTION_VIEWACTION_VIEWSUGGEST_COLUMN_INTENT_DATA_ID
entry in your cursor.This list is not meant to be exhaustive. Applications should feel free to define other types of suggestions. For example, you could reduce long lists of results to summaries, and use one of the above intents (or one of your own) with specially formatted Data Uri's to display more detailed results. Or you could display textual shortcuts as suggestions, but launch a display in a more data-appropriate format such as media artwork.
Suggestion Rewriting. If the user navigates through the suggestions list, the UI may temporarily rewrite the user's query with a query that matches the currently selected suggestion. This enables the user to see what query is being suggested, and also allows the user to click or touch in the entry EditText element and make further edits to the query before dispatching it. In order to perform this correctly, the Search UI needs to know exactly what text to rewrite the query with.
For each suggestion, the following logic is used to select a new query string:
SUGGEST_COLUMN_QUERY
column, this value will be used.SUGGEST_COLUMN_TEXT_1 will be used. This should be used for suggestions in which no
query text is provided and the SUGGEST_COLUMN_INTENT_DATA values are not suitable for user
inspection and editing.Searchable activities may also wish to provide shortcuts based on the various action keys available on the device. The most basic example of this is the contacts app, which enables the green "dial" key for quick access during searching. Not all action keys are available on every device, and not all are allowed to be overriden in this way. (For example, the "Home" key must always return to the home screen, with no exceptions.)
In order to define action keys for your searchable application, you must do two things.
Intent.Updating metadata. For each keycode of interest, you must add an <actionkey>
element. Within this element you must define two or three attributes. The first attribute,
<android:keycode>, is required; It is the key code of the action key event, as defined in
KeyEvent. The remaining two attributes define the value of the actionkey's
message, which will be passed to your searchable activity in the
Intent (see below for more details). Although each of these
attributes is optional, you must define one or both for the action key to have any effect.
<android:queryActionMsg> provides the message that will be sent if the action key is
pressed while the user is simply entering query text. <android:suggestActionMsgColumn>
is used when action keys are tied to specific suggestions. This attribute provides the name
of a column in your suggestion cursor; The individual suggestion, in that column,
provides the message. (If the cell is empty or null, that suggestion will not work with that
action key.)
See the Searchability Metadata section for more details and examples.
Receiving Action Keys Intents launched by action keys will be specially marked using a combination of values. This enables your searchable application to examine the intent, if necessary, and perform special processing. For example, clicking a suggested contact might simply display them; Selecting a suggested contact and clicking the dial button might immediately call them.
When a search Intent is launched by an action key, two values
will be added to the extras field.
getIntExtra(SearchManager.ACTION_KEY).getStringExtra(SearchManager.ACTION_MSG)Every activity that is searchable must provide a small amount of additional information in order to properly configure the search system. This controls the way that your search is presented to the user, and controls for the various modalities described previously.
If your application is not searchable, then you do not need to provide any search metadata, and you can skip the rest of this section. When this search metadata cannot be found, the search manager will assume that the activity does not implement search. (Note: to implement web-based search, you will need to add the android.app.default_searchable metadata to your manifest, as shown below.)
Values you supply in metadata apply only to each local searchable activity. Each searchable activity can define a completely unique search experience relevant to its own capabilities and user experience requirements, and a single application can even define multiple searchable activities.
Metadata for searchable activity. As with your search implementations described above, you must first identify which of your activities is searchable. In the manifest entry for this activity, you must provide two elements:
ACTION_SEARCH Intent.
Here is a snippet showing the necessary elements in the manifest entry for your searchable activity.
<!-- Search Activity - searchable -->
<activity android:name="MySearchActivity"
android:label="Search"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
Next, you must provide the rest of the searchability configuration in the small XML file, stored in the ../xml/ folder in your build. The XML file is a simple enumeration of the search configuration parameters for searching within this activity, application, or package. Here is a sample XML file (named searchable.xml, for use with the above manifest) for a query-search activity.
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:label="@string/search_label"
android:hint="@string/search_hint" >
</searchable>
Note that all user-visible strings must be provided in the form of "@string" references. Hard-coded strings, which cannot be localized, will not work properly in search metadata.
Attributes you can set in search metadata:
| Attribute | Description | Required? | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| android:label | This is the name for your application that will be presented to the user in a list of search targets, or in the search box as a label. | Yes | ||||||||
| android:icon | If provided, this icon will be used in place of the label string. This is provided in order to present logos or other non-textual banners. | No | ||||||||
| android:hint | This is the text to display in the search text field when no user text has been entered. | No | ||||||||
| android:searchButtonText | If provided, this text will replace the default text in the "Search" button. | No | ||||||||
| android:searchMode | If provided and non-zero, sets additional modes for control of the search
presentation. The following mode bits are defined:
|
No |
Styleable Resources in your Metadata. It's possible to provide alternate strings for your searchable application, in order to provide localization and/or to better visual presentation on different device configurations. Each searchable activity has a single XML metadata file, but any resource references can be replaced at runtime based on device configuration, language setting, and other system inputs.
A concrete example is the "hint" text you supply using the android:searchHint attribute. In portrait mode you'll have less screen space and may need to provide a shorter string, but in landscape mode you can provide a longer, more descriptive hint. To do this, you'll need to define two or more strings.xml files, in the following directories:
For more complete documentation on this capability, see Resources and Internationalization: Supporting Alternate Resources for Alternate Languages and Configurations .
Metadata for non-searchable activities. Activities which are part of a searchable application, but don't implement search itself, require a bit of "glue" in order to cause them to invoke search using your searchable activity as their primary context. If this is not provided, then searches from these activities will use the system default search context.
The simplest way to specify this is to add a search reference element to the application entry in the manifest file. The value of this reference can be either of:
Here is a snippet showing the necessary addition to the manifest entry for your non-searchable activities.
<application>
<meta-data android:name="android.app.default_searchable"
android:value=".MySearchActivity" />
<!-- followed by activities, providers, etc... -->
</application>
You can also specify android.app.default_searchable on a per-activity basis, by including the meta-data element (as shown above) in one or more activity sections. If found, these will override the reference in the application section. The only reason to configure your application this way would be if you wish to partition it into separate sections with different search behaviors; Otherwise this configuration is not recommended.
Additional Metadata for search suggestions. If you have defined a content provider to generate search suggestions, you'll need to publish it to the system, and you'll need to provide a bit of additional XML metadata in order to configure communications with it.
First, in your manifest, you'll add the following lines.
<!-- Content provider for search suggestions -->
<provider android:name="YourSuggestionProviderClass"
android:authorities="your.suggestion.authority" />
Next, you'll add a few lines to your XML metadata file, as shown:
<!-- Required attribute for any suggestions provider -->
android:searchSuggestAuthority="your.suggestion.authority"
<!-- Optional attribute for configuring queries -->
android:searchSuggestSelection="field =?"
<!-- Optional attributes for configuring intent construction -->
android:searchSuggestIntentAction="intent action string"
android:searchSuggestIntentData="intent data Uri" />
Elements of search metadata that support suggestions:
| Attribute | Description | Required? |
|---|---|---|
| android:searchSuggestAuthority | This value must match the authority string provided in the provider section of your manifest. | Yes |
| android:searchSuggestPath | If provided, this will be inserted in the suggestions query Uri, after the authority you have provide but before the standard suggestions path. This is only required if you have a single content provider issuing different types of suggestions (e.g. for different data types) and you need a way to disambiguate the suggestions queries when they are received. | No |
| android:searchSuggestSelection | If provided, this value will be passed into your query function as the selection parameter. Typically this will be a WHERE clause for your database, and will contain a single question mark, which represents the actual query string that has been typed by the user. However, you can also use any non-null value to simply trigger the delivery of the query text (via selection arguments), and then use the query text in any way appropriate for your provider (ignoring the actual text of the selection parameter.) | No |
| android:searchSuggestIntentAction | If provided, and not overridden by the selected suggestion, this value will be
placed in the action field of the Intent when the
user clicks a suggestion. |
No |
| android:searchSuggestIntentData | If provided, and not overridden by the selected suggestion, this value will be
placed in the data field of the Intent when the user
clicks a suggestion. |
No |
Additional Metadata for search action keys. For each action key that you would like to define, you'll need to add an additional element defining that key, and using the attributes discussed in Action Keys. A simple example is shown here:
<actionkey
android:keycode="KEYCODE_CALL"
android:queryActionMsg="call"
android:suggestActionMsg="call"
android:suggestActionMsgColumn="call_column" />
Elements of search metadata that support search action keys. Note that although each of the action message elements are marked as optional, at least one must be present for the action key to have any effect.
| Attribute | Description | Required? |
|---|---|---|
| android:keycode | This attribute denotes the action key you wish to respond to. Note that not
all action keys are actually supported using this mechanism, as many of them are
used for typing, navigation, or system functions. This will be added to the
ACTION_SEARCH intent that is passed to
your searchable activity. To examine the key code, use
getIntExtra(SearchManager.ACTION_KEY).
Note, in addition to the keycode, you must also provide one or more of the action specifier attributes. |
Yes |
| android:queryActionMsg | If you wish to handle an action key during normal search query entry, you
must define an action string here. This will be added to the
ACTION_SEARCH intent that is passed to your
searchable activity. To examine the string, use
getStringExtra(SearchManager.ACTION_MSG). |
No |
| android:suggestActionMsg | If you wish to handle an action key while a suggestion is being displayed and
selected, there are two ways to handle this. If all of your suggestions
can handle the action key, you can simply define the action message using this
attribute. This will be added to the
ACTION_SEARCH intent that is passed to
your searchable activity. To examine the string, use
getStringExtra(SearchManager.ACTION_MSG). |
No |
| android:suggestActionMsgColumn | If you wish to handle an action key while a suggestion is being displayed and
selected, but you do not wish to enable this action key for every suggestion,
then you can use this attribute to control it on a suggestion-by-suggestion basis.
First, you must define a column (and name it here) where your suggestions will
include the action string. Then, in your content provider, you must provide this
column, and when desired, provide data in this column.
The search manager will look at your suggestion cursor, using the string
provided here in order to select a column, and will use that to select a string from
the cursor. That string will be added to the
ACTION_SEARCH intent that is passed to
your searchable activity. To examine the string, use
getStringExtra(SearchManager.ACTION_MSG). If the data does not exist for the
selection suggestion, the action key will be ignored. |
No |
In order to improve search experience, an application may wish to specify additional data along with the search, such as local history or context. For example, a maps search would be improved by including the current location. In order to simplify the structure of your activities, this can be done using the search manager.
Any data can be provided at the time the search is launched, as long as it
can be stored in a Bundle object.
To pass application data into the Search Manager, you'll need to override
onSearchRequested as follows:
@Override
public boolean onSearchRequested() {
Bundle appData = new Bundle();
appData.put...();
appData.put...();
startSearch(null, false, appData);
return true;
}
To receive application data from the Search Manager, you'll extract it from
the ACTION_SEARCH
Intent as follows:
final Bundle appData = queryIntent.getBundleExtra(SearchManager.APP_DATA);
if (appData != null) {
appData.get...();
appData.get...();
}
| Nested Class Summary | |
|---|---|
static interface |
SearchManager.OnCancelListener
See setOnCancelListener(android.app.SearchManager.OnCancelListener) for configuring your activity to monitor search UI state. |
static interface |
SearchManager.OnDismissListener
See setOnDismissListener(android.app.SearchManager.OnDismissListener) for configuring your activity to monitor search UI state. |
| Field Summary | |
|---|---|
static String |
ACTION_KEY
Intent extra data key: Use this key with Intent.ACTION_SEARCH and content.Intent.getIntExtra()
to obtain the keycode that the user used to trigger this query. |
static String |
ACTION_MSG
Intent extra data key: Use this key with Intent.ACTION_SEARCH and content.Intent.getStringExtra()
to obtain the action message that was defined for a particular search action key and/or
suggestion. |
static String |
APP_DATA
Intent extra data key: Use this key with Intent.ACTION_SEARCH and content.Intent.getBundleExtra()
to obtain any additional app-specific data that was inserted by the
activity that launched the search. |
static char |
MENU_KEY
This is a shortcut definition for the default menu key to use for invoking search. |
static int |
MENU_KEYCODE
This is a shortcut definition for the default menu key to use for invoking search. |
static String |
QUERY
Intent extra data key: Use this key with content.Intent.getStringExtra()
to obtain the query string from Intent.ACTION_SEARCH. |
static String |
SUGGEST_COLUMN_FORMAT
Column name for suggestions cursor. |
static String |
SUGGEST_COLUMN_ICON_1
Column name for suggestions cursor. |
static String |
SUGGEST_COLUMN_ICON_2
Column name for suggestions cursor. |
static String |
SUGGEST_COLUMN_INTENT_ACTION
Column name for suggestions cursor. |
static String |
SUGGEST_COLUMN_INTENT_DATA
Column name for suggestions cursor. |
static String |
SUGGEST_COLUMN_INTENT_DATA_ID
Column name for suggestions cursor. |
static String |
SUGGEST_COLUMN_QUERY
Column name for suggestions cursor. |
static String |
SUGGEST_COLUMN_TEXT_1
Column name for suggestions cursor. |
static String |
SUGGEST_COLUMN_TEXT_2
Column name for suggestions cursor. |
static String |
SUGGEST_MIME_TYPE
MIME type for suggestions data. |
static String |
SUGGEST_URI_PATH_QUERY
Uri path for queried suggestions data. |
| Constructor Summary | |
|---|---|
SearchManager(Context context,
Handler handler)
|
|
| Method Summary | |
|---|---|
boolean |
isVisible()
Determine if the Search UI is currently displayed. |
void |
onCancel(DialogInterface dialog)
The callback from the search dialog when canceled |
(package private) void |
onConfigurationChanged(Configuration newConfig)
Hook for updating layout on a rotation |
void |
onDismiss(DialogInterface dialog)
The callback from the search dialog when dismissed |
(package private) void |
restoreSearchDialog(Bundle inState,
String key)
Restore instance state after a rotation. |
(package private) void |
saveSearchDialog(Bundle outState,
String key)
Save instance state so we can recreate after a rotation. |
void |
setOnCancelListener(SearchManager.OnCancelListener listener)
Set or clear the callback that will be invoked whenever the search UI is canceled. |
void |
setOnDismissListener(SearchManager.OnDismissListener listener)
Set or clear the callback that will be invoked whenever the search UI is dismissed. |
void |
startSearch(String initialQuery,
boolean selectInitialQuery,
ComponentName launchActivity,
Bundle appSearchData,
boolean globalSearch)
Launch search UI. |
void |
stopSearch()
Terminate search UI. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final char MENU_KEY
public static final int MENU_KEYCODE
public static final String QUERY
content.Intent.getStringExtra()
to obtain the query string from Intent.ACTION_SEARCH.
public static final String APP_DATA
content.Intent.getBundleExtra()
to obtain any additional app-specific data that was inserted by the
activity that launched the search.
public static final String ACTION_KEY
content.Intent.getIntExtra()
to obtain the keycode that the user used to trigger this query. It will be zero if the
user simply pressed the "GO" button on the search UI. This is primarily used in conjunction
with the keycode attribute in the actionkey element of your searchable.xml configuration
file.
public static final String ACTION_MSG
content.Intent.getStringExtra()
to obtain the action message that was defined for a particular search action key and/or
suggestion. It will be null if the search was launched by typing "enter", touched the the
"GO" button, or other means not involving any action key.
public static final String SUGGEST_URI_PATH_QUERY
public static final String SUGGEST_MIME_TYPE
public static final String SUGGEST_COLUMN_FORMAT
public static final String SUGGEST_COLUMN_TEXT_1
public static final String SUGGEST_COLUMN_TEXT_2
public static final String SUGGEST_COLUMN_ICON_1
SUGGEST_COLUMN_ICON_2.
public static final String SUGGEST_COLUMN_ICON_2
SUGGEST_COLUMN_ICON_1.
public static final String SUGGEST_COLUMN_INTENT_ACTION
public static final String SUGGEST_COLUMN_INTENT_DATA
public static final String SUGGEST_COLUMN_INTENT_DATA_ID
public static final String SUGGEST_COLUMN_QUERY
ACTION_SEARCH, optional otherwise. If this
column exists and this element exists at the given row, this is the data that will be
used when forming the suggestion's query.
| Constructor Detail |
|---|
SearchManager(Context context,
Handler handler)
| Method Detail |
|---|
public void startSearch(String initialQuery,
boolean selectInitialQuery,
ComponentName launchActivity,
Bundle appSearchData,
boolean globalSearch)
The search manager will open a search widget in an overlapping window, and the underlying activity may be obscured. The search entry state will remain in effect until one of the following events:
stopSearch()
method, which will hide the search window and return focus to the
activity from which it was launched.Most applications will not use this interface to invoke search.
The primary method for invoking search is to call
Activity.onSearchRequested() or
Activity.startSearch().
initialQuery - A search string can be pre-entered here, but this
is typically null or empty.selectInitialQuery - If true, the intial query will be preselected, which means that
any further typing will replace it. This is useful for cases where an entire pre-formed
query is being inserted. If false, the selection point will be placed at the end of the
inserted query. This is useful when the inserted query is text that the user entered,
and the user would expect to be able to keep typing. This parameter is only meaningful
if initialQuery is a non-empty string.launchActivity - The ComponentName of the activity that has launched this search.appSearchData - An application can insert application-specific
context here, in order to improve quality or specificity of its own
searches. This data will be returned with SEARCH intent(s). Null if
no extra data is required.globalSearch - If false, this will only launch the search that has been specifically
defined by the application (which is usually defined as a local search). If no default
search is defined in the current application or activity, no search will be launched.
If true, this will always launch a platform-global (e.g. web-based) search instead.Activity.onSearchRequested(),
stopSearch()public void stopSearch()
Typically the user will terminate the search UI by launching a search or by canceling. This function allows the underlying application or activity to cancel the search prematurely (for any reason).
This function can be safely called at any time (even if no search is active.)
startSearch(java.lang.String, boolean, android.content.ComponentName, android.os.Bundle, boolean)public boolean isVisible()
public void setOnDismissListener(SearchManager.OnDismissListener listener)
listener - The SearchManager.OnDismissListener to use, or null.public void onDismiss(DialogInterface dialog)
onDismiss in interface DialogInterface.OnDismissListenerdialog - The dialog that was dismissed will be passed into the
method.public void setOnCancelListener(SearchManager.OnCancelListener listener)
listener - The SearchManager.OnCancelListener to use, or null.public void onCancel(DialogInterface dialog)
onCancel in interface DialogInterface.OnCancelListenerdialog - The dialog that was canceled will be passed into the
method.
void saveSearchDialog(Bundle outState,
String key)
void restoreSearchDialog(Bundle inState,
String key)
void onConfigurationChanged(Configuration newConfig)
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||