嗨,我坚持这个。
像这样设置RecentSearchProvider
公共类 MyRecentSuggestionProvider 扩展 SearchRecentSuggestionsProvider {
public final static int MODE = DATABASE_MODE_QUERIES;
public static String AUTHORITY = "com.xxxxx.authority";
public MyRecentSuggestionProvider() {
super();
setupSuggestions(AUTHORITY, MODE);
}
}
但是我想从 res/strings 中设置权限,即。
setupSuggestions(getContext().getResources().getString(R.string.authority), MODE);
虽然这会得到一个空指针异常。
关于如何解决这个问题的任何建议?艾登