gpt4 book ai didi

c# - 如何在 monodroid 中删除用于编辑文本的 TextChangedListener

转载 作者:行者123 更新时间:2023-11-30 01:52:53 25 4
gpt4 key购买 nike

我使用 AddTextChangedListener 来编辑文本:

edit_text.AddTextChangedListener(new NumberTextWatcher());

现在我想删除 TextChangedListener用于EditText`。

我试过使用下面的代码,但我没有成功。

edit_text.RemoveTextChangedListener(NumberTextWatcher);

最佳答案

您需要将对 NumberTextWatcher 的引用存储在某处,以便稍后将其删除

//Field that stores the reference
private readonly NumberTextWatcher watcher = new NumberTextWatcher();

//Adds the listener
edit_text.AddTextChangedListener(watcher);

//Later in your code you can simply remove it like this:
edit_text.RemoveTextChangedListener(watcher);

关于c# - 如何在 monodroid 中删除用于编辑文本的 TextChangedListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32738244/

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