FileDocCategorySizeDatePackage
SearchSuggestionSampleProvider.javaAPI DocAndroid 1.5 API1983Wed May 06 22:41:08 BST 2009com.example.android.apis.app

SearchSuggestionSampleProvider

public class SearchSuggestionSampleProvider extends android.content.SearchRecentSuggestionsProvider
To create a search suggestions provider using the built-in recent queries mode, simply extend SearchRecentSuggestionsProvider as shown here, and configure with a unique authority and the mode you with to use. For more information, see {@link android.content.SearchRecentSuggestionsProvider}.

Fields Summary
static final String
AUTHORITY
This is the provider authority identifier. The same string must appear in your Manifest file, and any time you instantiate a {@link android.provider.SearchRecentSuggestions} helper class.
static final int
MODE
These flags determine the operating mode of the suggestions provider. This value should not change from run to run, because when it does change, your suggestions database may be wiped.
Constructors Summary
public SearchSuggestionSampleProvider()
The main job of the constructor is to call {@link #setupSuggestions(String, int)} with the appropriate configuration values.

    
                          
      
        super();
        setupSuggestions(AUTHORITY, MODE);
    
Methods Summary