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 wrote:
> Thanks for your reply.
>
> I got it to work in portrait mode. But the problem is on landscape
> mode. Im using andr
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 field
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 Passw
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.
th
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 initiali
5 matches
Mail list logo