获取AutoCompleteTextView的值,用kotlin
时间: 2023-07-14 20:14:23 浏览: 77
获取AutoCompleteTextView的值,可以使用以下代码:
```kotlin
val autoCompleteTextView = findViewById<AutoCompleteTextView>(R.id.autoCompleteTextView)
val value = autoCompleteTextView.text.toString()
```
首先,需要使用findViewById方法获取AutoCompleteTextView的实例,然后调用text属性获取输入的文本,最后使用toString方法将文本转换为字符串类型。
阅读全文