Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having an EditText which is a password field. Now I want to build a checkbox so that the user can decide if he wants to see the password with * or in plain text. Therefore I built

if (passwordShouldBeVisible) {
        etext_key1.setInputType(InputType.TYPE_CLASS_TEXT);
    } else {
        etext_key1.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD | InputType.TYPE_CLASS_TEXT);
    }

This works great but has the issue that if the password is plain the auto completion of the keyboard trys to help you. Is there a chance to fix this?

Best regards,

Till

share|improve this question

1 Answer

up vote 0 down vote accepted

Try this: eText_key1.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);

Alternatively you can put the following in the XML definition of the EditText: android:inputType="textFilter".

EDIT:

Here's an example, just make sure you are defining the settings in your toggle logic and your xml layout, or initializing the input type in your onCreate:

    setContentView(R.layout.edittext);

    Button switchButton = (Button) findViewById(R.id.switchbutton);
    final EditText editText = (EditText) findViewById(R.id.password);

    switchButton.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            if (passwordShouldBeVisible) {
                editText.setInputType(InputType.TYPE_CLASS_TEXT
                        | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
            } else {
                editText.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD
                        | InputType.TYPE_CLASS_TEXT
                        | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
            }
        }
    });

and here's the XML file I am using:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <EditText
        android:id="@+id/password"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="text|textFilter"/>

    <Button
        android:id="@+id/switchbutton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Switch" />

</LinearLayout>
share|improve this answer
Sorry, this does not work for my HTC Desire :-(. I just or'd those two: etext_key1.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS); – Till Oct 27 '11 at 20:42
Strange... I added an example that works on my device. Check that you are setting the input type both initially and when you switch it. – Craigy Oct 27 '11 at 22:10
Just tried it again. The virtual emulator corretly deactivates the autocompletion while the real Desire trys to correct my input. :-( Any further ideas? – Till Oct 29 '11 at 11:54
Are you using a custom soft keyboard? Perhaps this option only works with the default – Craigy Oct 29 '11 at 13:50
1  
Well there you go, the Sense UI has a custom soft keyboard, not default Google soft keyboard. Try using eText.setInputType(EditorInfo.TYPE_TEXT_FLAG_NO_SUGGESTIONS | EditorInfo.TYPE_TEXT_VARIATION_FILTER); and see if that works – Craigy Oct 29 '11 at 17:51
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.