Created
November 11, 2018 20:43
-
-
Save sienatime/fa0303e8a2ccce05706b44ab4df4b2f5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public LiveData<PagedList<SearchResultEntry>> search(String term) { | |
String wildcardQuery = String.format("*%s*", term); | |
return new LivePagedListBuilder<>(entryDao.searchByJapaneseTerm(wildcardQuery), PAGE_SIZE).build(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment