以编程方式显示/隐藏TextInputLayout底部笔划

时间:2019-10-30 14:40:19

标签: android material-design android-textinputlayout

我想在EditText内至少有一个字母时显示TextInputLayout下笔画,而在没有文本时将其隐藏。

我尝试查找如何以编程方式设置app:boxStrokeWidthapp:boxStrokeColor,但找不到任何内容。我正在使用onTextChangedListener检查输入的文本长度。这可能吗,还是有解决方法?

@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
    if (count == 0) {
        // hide bottom stroke
    } else {
        // show bottom stroke
    }
}

0 个答案:

没有答案