Skip to content

Instantly share code, notes, and snippets.

@frett
frett / AutoCompleteAdapters.kt
Created May 15, 2019 17:53
Android Material Components - Dropdown Menu + Data Binding
import android.widget.ArrayAdapter
import android.widget.AutoCompleteTextView
import androidx.annotation.LayoutRes
import androidx.databinding.BindingAdapter
@BindingAdapter("dropDownItems", "dropDownItemLayout", "dropDownItemsIncludeEmpty", requireAll = false)
fun AutoCompleteTextView.setItems(items: Array<String>?, @LayoutRes layout: Int?, includeEmpty: Boolean?) =
setAdapter(
ArrayAdapter(
context,