gpt4 book ai didi

android - 如何在 RemoteInput 中指定最小和/或最大长度

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:53:58 29 4
gpt4 key购买 nike

我在我的 Android N 通知中使用 RemoteInput。

我想为输入设置最小和最大文本长度限制。

Google Hangouts 做到了这一点(即当用户输入至少 1 个字符时发送按钮启用)。任何人都知道如何做到这一点?我试过查看 Android 文档,但没有成功。

最佳答案

 button.setClickable(false);
button.setEnabled(false);
editText = (EditText)findViewById(R.id.editText);


editText.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
button.setClickable(true);
button.setTextColor(getResources().getColor(R.color.colorPrimary));
// TODO Auto-generated method stub
}

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

// TODO Auto-generated method stub
}

@Override
public void afterTextChanged(Editable s) {

// TODO Auto-generated method stub
}
});



}

关于android - 如何在 RemoteInput 中指定最小和/或最大长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43071675/

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