Hi!

In my app, I am showing an alert dialog and in it an EditText for the 
password with code like this:

  _input = *new* EditText(BaseInfoActivity.*this*);
_input.setSingleLine();
_input.setInputType(InputType.*TYPE_TEXT_VARIATION_PASSWORD*);
_input.setTransformationMethod(PasswordTransformationMethod.*getInstance*
());

This works well for pre-ICS devices. But ICS devices show contets of the 
EditText without password transformation when in extract mode (landscape 
orientation). In portrait mode, it works fine.

Is there an additional field for ICS devices that I could use? I am 
targeting API level 10, with minSdk set to 8, if that matters.

Kind regards,

 Miha.

-- 
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

Reply via email to