IconEditText icon indicating copy to clipboard operation
IconEditText copied to clipboard

"isPassword = true" seems doesn't work

Open jkyeo opened this issue 8 years ago • 0 comments

"isPassword = true" seems doesn't work I change code to

_editText.setInputType(
    _isPassword ? (InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD)
        : InputType.TYPE_TEXT_FLAG_AUTO_CORRECT
    );

And it work now.

jkyeo avatar Jun 01 '16 10:06 jkyeo