本文介绍了是否以编程方式设置EditText的inputType?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我们如何以编程方式设置EditText的输入类型?我正在尝试:
How do we set the input type for an EditText programatically? I'm trying:
mEdit.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD);
它似乎没有任何作用.
推荐答案
根据 TextView文档,则android:password的编程版本为 setTransformationMethod(),而不是setInputType().像这样:
According to the TextView docs, the programmatic version of android:password is setTransformationMethod(), not setInputType(). So something like:
mEdit.setTransformationMethod(PasswordTransformationMethod.getInstance());
应该可以解决问题.
这篇关于是否以编程方式设置EditText的inputType?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!