Back to project page Book-MetaSearch.
The source code is released under:
Apache License
If you think the Android project Book-MetaSearch 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 net.grosinger.bookmetasearch.search; /* w ww.jav a 2 s. co m*/ import android.content.SearchRecentSuggestionsProvider; // TODO: Update class description /** * A description of what this class does * * @author Tony * @since 11/16/2013 */ public class RecentBookSearchSuggestionsProvider extends SearchRecentSuggestionsProvider { public final static String AUTHORITY = "net.grosinger.bookmetasearch.search.RecentBookSearchSuggestionsProvider"; public final static int MODE = DATABASE_MODE_QUERIES; public RecentBookSearchSuggestionsProvider() { setupSuggestions(AUTHORITY, MODE); } }