Re: [android-developers] Re: Masking password input in extracted UI

2010-03-17 Thread Adrian Vintu
what is Extracted fullscreen? please post s short example of your java and xml code. BR, Adrian Vintu http://adrianvintu.com On Tue, Mar 16, 2010 at 4:45 PM, ahamed ahamedp...@gmail.com wrote: Thanks for your reply. I got it to work in portrait mode. But the problem is on landscape

[android-developers] Re: Masking password input in extracted UI

2010-03-16 Thread ahamed
Thanks for your reply. I got it to work in portrait mode. But the problem is on landscape mode. Im using android 1.5 to build it. when on portrait mode/candidate view the letters being masked when you type(one by one) itself. But on fullscreen mode where the extracted UI has its own edit

[android-developers] Re: Masking password input in extracted UI

2010-03-15 Thread ahamed
I tried the following but no luck. on landscape mode on fullscreen vkp mode text doenst masked. text1 = (EditText) this.findViewById(R.id.EditText01); text1.setTransformationMethod(new PasswordTransformationMethod()); Please let me know how can i mask the password in fullscreen VKP mode.

Re: [android-developers] Re: Masking password input in extracted UI

2010-03-15 Thread Adrian Vintu
When switching orientation the activity restarts. You need to put this code somewhere in onCreate: EditText editText = (EditText) findViewById(R.id.EditText01); editText.setInputType( InputType.TYPE_TEXT_VARIATION_PASSWORD); //also available from designer editText.setTransformationMethod(new

[android-developers] Re: Masking password input in extracted UI

2010-03-11 Thread ahamed
Thanks for the reply Adrian. I tried editText.setTransformationMethod(new PasswordTransformationMethod()); and editText.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD); for masking password in extracted view softkeyboard. but no luck. how would initialization vary for edit text. Im