Stores Adapter
open class StoresAdapter @JvmOverloads constructor(context: Context, val resource: Int, var language: String? = null) : ArrayAdapter<AssetAutocompleteResponsePredictionsInner>
You can use this adapter to provide views for an AdapterView. Returns a view for each results returned by StoresService.storeAutocomplete and can be used with list-based user interface widgets such as ListView or Spinner.
By default, the array adapter creates a view by calling AssetAutocompleteResponsePredictionsInner.name on each autocomplete results and places the result in a TextView. You may also customize what type of view is used for the data object in the collection. To customize what type of view is used for the data object, override StoresAdapter.getView and inflate a view resource.
For an example of using an array adapter with a ListView, see the Adapter Views guide.