Hi all,
I've created custom ui component for pair label-editText. This
component has to have possibility to mask password in editText field:
InputItem extends LinearLayout {
private TextView label;
private EditText text;
...
boolean isPassword =
array.getBoolean(R.styleable.InputItem_isPassword, false);
if (isPassword) {
text.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD);
text.setTransformationMethod(new
PasswordTransformationMethod());
}
It works fine in portrait mode, but in landscape mode letters, entered
in special popup form became visible (i.e. unmasked). It's possible
just to reject this popup frame appearence
text.setImeOptions(EditorInfo.IME_FLAG_NO_EXTRACT_UI);
but is it possible to mask password letters in this popup frame?
--
Regards
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en