0
嗨我卡在這一個。Android:RecentSearchProvider - 從字符串資源設置權限?
建立一個RecentSearchProvider這樣
公共類MyRecentSuggestionProvider擴展SearchRecentSuggestionsProvider {
public final static int MODE = DATABASE_MODE_QUERIES;
public static String AUTHORITY = "com.xxxxx.authority";
public MyRecentSuggestionProvider() {
super();
setupSuggestions(AUTHORITY, MODE);
}
}
但是我想從水庫設置管理局/串IE瀏覽器。
setupSuggestions(getContext().getResources().getString(R.string.authority), MODE);
儘管這會得到一個空指針異常。
有關如何解決這個問題的任何建議? 艾登