Back to project page FileManager.
The source code is released under:
GNU General Public License
If you think the Android project FileManager 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.ankur.coreutils; /* w w w . jav a 2 s .c o m*/ import android.content.SearchRecentSuggestionsProvider; public class SearchSuggestions extends SearchRecentSuggestionsProvider { public final static String AUTHORITY = "com.ankur.core"; public final static int MODE = DATABASE_MODE_QUERIES; public SearchSuggestions() { setupSuggestions(AUTHORITY, MODE); } }