I have an EditText with some dummy text in it. When the user clicks on it I want it to be selected so that when the user starts typing the dummy text gets deleted.

How can I achieve this?

link|improve this question

feedback

4 Answers

up vote 28 down vote accepted

You can try in your main.xml file: android:selectAllOnFocus="true"

link|improve this answer
Thanks this worked! – Galip Jan 12 '11 at 13:55
feedback
EditText dummy = ... 

dummy.setOnFocusChangedListener(new OnFocusChangedListener(){
    public void onFocusChange(View v, boolean hasFocus){
        if (hasFocus) && (isDummyText())
            ((EditText)v).selectAll();
    }
});
link|improve this answer
Thanks for your help, but I prefer TheCottonSilk's solution because I have 12 EditText's and I like to keep my code as clean as possible :) Thanks anyways! – Galip Jan 12 '11 at 13:56
feedback

I know you've found a solution, but really the proper way to do what you're asking is to just use the android:hint attribute in your EditText. This text shows up when the box is empty and not focused, but disappears upon selecting the EditText box.

link|improve this answer
In my app those fields are filled up by personal details which can be saved. When I load those details it'll replace the 'dummy' text. With my curren method I can also have text selected AFTER the user entered details. Thanks for your concerns though! – Galip Jan 12 '11 at 15:30
Ah okay, see your point. :) – kcoppock Jan 12 '11 at 15:31
feedback

Why don't you try android:hint="hint" to provide the hint to the user..!!

The "hint" will automatically disappear when the user clicks on the edittextbox. its the proper and best solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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