[android-developers] Mask password in landscape mode

2010-09-07 Thread Vladyslav Namashko
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_isP

Re: [android-developers] Mask password in landscape mode

2010-09-07 Thread Dianne Hackborn
Set the EditText to password mode, don't stuff your own transformation method into it. On Tue, Sep 7, 2010 at 8:04 AM, Vladyslav Namashko wrote: > Hi all, > > I've created custom ui component for pair label-editText. This > component has to have possibility to mask password in editText field: > >