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

时间:2017-03-28 14:01:16

标签: android notifications remote-input

我在Android N通知中使用RemoteInput。

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

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

2 个答案:

答案 0 :(得分:5)

 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
        }
    });



}

答案 1 :(得分:0)

尝试使用自定义视图实现通知。并在其中包含您需要的所有逻辑。 对我而言,这是一种方式((