class HistoryStorageSuggestionProvider : SuggestionProvider
(source)
A AwesomeBar.SuggestionProvider implementation that provides suggestions based on the browsing history stored in the HistoryStorage.
HistoryStorageSuggestionProvider(historyStorage: HistoryStorage, loadUrlUseCase: LoadUrlUseCase)
A AwesomeBar.SuggestionProvider implementation that provides suggestions based on the browsing history stored in the HistoryStorage. |
open val shouldClearSuggestions: Boolean
If true an AwesomeBar implementation can clear the previous suggestions of this provider as soon as the user continues to type. If this is false an AwesomeBar implementation is allowed to keep the previous suggestions around until the provider returns a new list of suggestions for the updated text. |
suspend fun onInputChanged(text: String): List<Suggestion>
Fired whenever the user changes their input, after they have started interacting with the awesome bar. |
open fun onInputCancelled(): Unit
Fired when the user has cancelled their interaction with the awesome bar. |
|
open fun onInputStarted(): Unit
Fired when the user starts interacting with the awesome bar by entering text in the toolbar. |