Back to project page EdmontonWifi.
The source code is released under:
MIT License
If you think the Android project EdmontonWifi 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 hey.rich.edmontonwifi.utils; /* w w w .ja v a 2 s.c om*/ import android.content.SearchRecentSuggestionsProvider; /** * Provides recent search functionality to the search activity. from: * http://www.grokkingandroid.com/android-tutorial-adding-suggestions-to-search/ */ public class WifiSearchRecentSuggestionsProvider extends SearchRecentSuggestionsProvider { public static final String AUTHORITY = WifiSearchRecentSuggestionsProvider.class .getName(); public static final int MODE = DATABASE_MODE_QUERIES; public WifiSearchRecentSuggestionsProvider(){ setupSuggestions(AUTHORITY, MODE); } }