Back to project page Meteogram.
The source code is released under:
License Human-readable version (http://creativecommons.org/licenses/by-sa/3.0/deed.en_US) THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "...
If you think the Android project Meteogram 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.kamburov.meteogram.provider; /* w w w. ja v a 2 s . c o m*/ import android.content.SearchRecentSuggestionsProvider; public class LocationSuggestions extends SearchRecentSuggestionsProvider { public static final String AUTHORITY = LocationSuggestions.class.getName(); public static final int MODE = DATABASE_MODE_QUERIES; public LocationSuggestions() { // See method docs setupSuggestions(AUTHORITY, MODE); } }