未解决的参考:textField

问题描述 投票:0回答:1

我在该代码块的第三行开头收到此消息“未解析的引用:textField”:

val items = listOf("Material", "Design", "Components", "Android")
val adapter = ArrayAdapter(requireContext(), R.layout.list_item, items)
(textField.editText as? AutoCompleteTextView)?.setAdapter(adapter)

我只是按照他们的说明直接从材料设计文档网站复制并粘贴代码,但我似乎不起作用。我在这里缺少什么?

kotlin material-design
1个回答
0
投票

在本例中,textField 是从组件绑定的 @+id TextInputLayout

类似这样的事情。

<com.google.android.material.textfield.TextInputLayout    
style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu"
android:id="@+id/text_field"
android:layout_width="match_parent"
android:layout_height="wrap_content">
© www.soinside.com 2019 - 2024. All rights reserved.