Back to project page ExpertAndroid.
The source code is released under:
MIT License
If you think the Android project ExpertAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.iuriio.demos.expertandroid.ch11searchprovider; //from w w w. j a v a2 s . c o m import android.content.SearchRecentSuggestionsProvider; /** * Created by iuriio on 10/28/13. */ public class SimpleSuggestionProvider extends SearchRecentSuggestionsProvider { final static String AUTHORITY = "com.iuriio.demos.expertandroid.SimpleSuggestionProvider"; final static int MODE = DATABASE_MODE_QUERIES | DATABASE_MODE_2LINES; public SimpleSuggestionProvider() { super(); this.setupSuggestions(AUTHORITY, MODE); } }