gpt4 book ai didi

java - 使用 editText Activity 更改按钮可见性 onClick

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

我有一个按钮和两个 editText。我想知道是否有人可以告诉我如何检查 editTexts Activity ;如果两个 editTexts 都是空的,按钮是可见的,可能是透明的但不可点击。有谁知道更改可见性或使其不可点击的代码?谢谢

最佳答案

您需要做的就是使用 addTextChangedListener 收听您的编辑文本并禁用或隐藏您的按钮。

    yourEditText = (EditText) findViewById(R.id.yourEditTextId);

yourEditText.addTextChangedListener(new TextWatcher() {

public void afterTextChanged(Editable s) {}

public void beforeTextChanged(CharSequence s, int start, int count, int after) {}

public void onTextChanged(CharSequence s, int start, int before, int count) {
// check the count here and hide your button in response either by hiding it or disabling it.
button.setEnabled(false);
}
});

关于java - 使用 editText Activity 更改按钮可见性 onClick,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17389186/

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