Add UI skeleton for searching

This commit is contained in:
Bradlee Speice
2015-01-03 17:45:33 -05:00
parent e3651f9e31
commit 5bb4e1a033
9 changed files with 168 additions and 4 deletions

View File

@ -0,0 +1,13 @@
package org.bspeice.minimalbible.activity.search
import org.crosswire.jsword.passage.Verse
/**
* This is the entry point for handling the actual bible search. Likely will support
* an "advanced" search in the future, but for now, basicTextSearch is what you get.
*/
class SearchProvider() {
public fun basicTextSearch(text: String): List<Verse> =
listOf()
}