作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有TextInputEditText
( Material 设计组件)的简单表单,无法收听文本更改。用TextWatcher
添加addTextChangedListener
似乎效果为零。当我运行我的应用程序并使用虚拟键盘输入输入时,没有调用任何回调(未击中调试断点),并且TextView
没有更新:
Activity :
class MainActivity : AppCompatActivity() {
private lateinit var webBankingIdLayout: TextInputLayout
private lateinit var webBankingIdInput: TextInputEditText
private lateinit var textView: TextView
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
webBankingIdLayout = findViewById<TextInputLayout>(R.id.web_banking_id_input_layout)
webBankingIdInput = TextInputEditText(webBankingIdLayout.context)
textView = findViewById<TextView>(R.id.temp_text)
webBankingIdInput.addTextChangedListener(object: TextWatcher {
override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {
s!!
}
override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {
s!!
textView.text = s!!
}
override fun afterTextChanged(s: Editable?) {
s!!
}
})
}
}
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/web_banking_id_input_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/web_banking_id_text_input"
android:maxLines="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:inputType="text"
android:hint="@string/web_banking_id_hint" />
</com.google.android.material.textfield.TextInputLayout>
<TextView
android:id="@+id/temp_text"
android:layout_width="250dp"
android:layout_height="113dp"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/password_input_layout" />
TextView
。
webBankingIdInput.text = "Yippee!"
最佳答案
您需要更换:
webBankingIdInput = TextInputEditText(webBankingIdLayout.context)
webBankingIdInput = findViewById<TextInputEditText>(R.id.web_banking_id_text_input)
关于android - 键入时不调用TextInputEditText addTextChangedListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53124844/
我是一名优秀的程序员,十分优秀!