gpt4 book ai didi

Android 应用开发帮助 : Perform Action as soon as data is entered

转载 作者:行者123 更新时间:2023-11-30 03:50:03 26 4
gpt4 key购买 nike

我曾在 Android 上看到一个应用程序,只要有人在文本框中输入任何内容,显示输出的另一个文本框就会自动更改,而无需按任何按钮或任何其他操作。我想知道如何为 Android 应用程序执行此操作。

最佳答案

您可以通过添加 addTextChangedListener 来完成此操作到 EditText 。对用户在 afterTextChanged 中输入的数据执行所有操作,因为当用户停止在 Edittext 中输入时调用此方法

EditText edttext = (EditText)findViewById(R.id.edttext);
edttext.addTextChangedListener(textChecker);
TextWatcher textChecker = new TextWatcher() {

public void afterTextChanged(Editable s) {
//set text to other Views
}

};

参见 this我们如何使用 TextWatcher 的例子

关于Android 应用开发帮助 : Perform Action as soon as data is entered,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14301506/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com