Back to project page Text-Edit-for-Android.
The source code is released under:
GNU General Public License
If you think the Android project Text-Edit-for-Android 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 org.paulmach.textedit; /* w w w . jav a2s .com*/ import android.content.SearchRecentSuggestionsProvider; /* SearchSuggestions * Pretty simple to provide search suggestions */ public class SearchSuggestions extends SearchRecentSuggestionsProvider { public final static String AUTHORITY = "org.paulmach.authority"; public final static int MODE = DATABASE_MODE_QUERIES; public SearchSuggestions() { setupSuggestions(AUTHORITY, MODE); } } // end class SearchSuggestions