We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01d2f32 commit 7f4b9f4Copy full SHA for 7f4b9f4
1 file changed
engine/src/java/com/runrev/android/nativecontrol/InputControl.java
@@ -247,7 +247,7 @@ public void setIsPassword(boolean p_password)
247
{
248
m_transformation_method = m_text_view.getTransformationMethod();
249
m_text_view.setTransformationMethod(PasswordTransformationMethod.getInstance());
250
- m_text_view.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
+ m_text_view.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS | InputType.TYPE_TEXT_VARIATION_PASSWORD);
251
}
252
else if (!p_password && m_transformation_method != null)
253
0 commit comments