Back to project page MatchHistory-League.
The source code is released under:
MIT License
If you think the Android project MatchHistory-League 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.lando.matchhistory.Provider; /* w w w .j a va 2 s. c o m*/ import android.content.SearchRecentSuggestionsProvider; /** * Created by lcheruka on 1/6/2015. */ public class RecentSuggestionProvider extends SearchRecentSuggestionsProvider { public final static String AUTHORITY = "com.lando.lolmatches.Provider.RecentSuggestionProvider"; public final static int MODE = DATABASE_MODE_QUERIES; public RecentSuggestionProvider() { setupSuggestions(AUTHORITY,MODE); } }