In Android how can I make an EditText clear when it's clicked?
ie if I have an EditText with some characters in, such as 'Enter Name', when the user clicks on it these characters disappear.
Cheers
|
|
I'm not sure if you are after this, but try this XML:
It displays that text when the input field is empty, selected or unselected. Or if you want it to do exactly as you described, assign a onClickListener on the editText and set it empty with setText(). |
|||||||||
|
|
Are you looking for behavior similar to the x that shows up on the right side of text fields on an iphone that clears the text when tapped? It's called clearButtonMode there. Here is how to create that same functionality in an Android EditText view:
|
|||||||||
|
|
@Harris's answer is great, I've implemented it as a separate subclass of EditText, which can make it easier to use if your code already adds TextChangedListeners. Also, I've tweaked it so that, if you already use any Compound Drawables, it leaves them intact. Code is here, for anyone who needs it:
|
|||
|
|
|
after onclick of any action do below step
or write this in XML file
its works fine for me. Hope to you all. |
|||||||||
|
|
If you want to have text in the edit text and remove it like you say, try:
|
|||
|
|
Be careful when setting text with an onClick listener on the field you are setting the text. I was doing this and setting the text to an empty string. This was causing the pointer to come up to indicate where my cursor was, which will normally go away after a few seconds. When I did not wait for it to go away before leaving my page causing finish() to be called, it would cause a memory leak and crash my app. Took me a while to figure out what was causing the crash on this one.. Anyway, I would recommend using selectAll() in your on click listener rather than setText() if you can. This way, once the text is selected, the user can start typing and all of the previous text will be cleared. pic of the suspect pointer: http://i.stack.imgur.com/juJnt.png |
|||
|
|
|
//To clear When Clear Button is Clicked
This will help to clear the wrong keywords that you have typed in so instead of pressing backspace again and again you can simply click the button to clear everything.It Worked For me. Hope It Helps |
|||
|
|