Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to know,Is it any widget like EditText which contains an cross button or is there any property for EditText by which it is created automatically.So by using that cross button I can delete whatever text written in EditText.

share|improve this question
2  
Doesn't appear to be any standard widget for it. But you find a few different approaches with a Google search for "android edittext clear button x". So I guess "clear buttons" is what they call it. Also, see this answer to a related question: stackoverflow.com/questions/4175398/clear-edittext-on-click/… – HostileFork Jun 15 '11 at 8:51

4 Answers

up vote 39 down vote accepted

Use the following layout:

<FrameLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="9dp"
    android:padding="5dp">

    <EditText
        android:id="@+id/calc_txt_Prise"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="numberDecimal"  
        android:layout_marginTop="20dp"
        android:textSize="25dp"
        android:textColor="@color/gray"
        android:textStyle="bold"
        android:hint="@string/calc_txt_Prise"
        android:singleLine="true" />

    <Button
        android:id="@+id/calc_clear_txt_Prise"      
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="10dp"
        android:layout_gravity="right|center_vertical"
        android:background="@drawable/delete" />

</FrameLayout>

You can use the button's id and perform whatever action you want on it's onClickListener method

share|improve this answer
Thankyou for the code snippet... its really nice.... – praveenb Mar 21 '12 at 7:12
this is a inefficient way of doing it. yanchenko's answer is right approach of using compound drawables. – numan Apr 10 at 15:48
If you happen to choose this solution and notice that the image is stretched a lot too much, you should probably use an ImageButton instead of a regular Button. – personne3000 Apr 23 at 14:53
or change the size of the button... – Nicolas Tyler Apr 24 at 10:05

You can also check this for modified and extended answer ClearableEditText.

share|improve this answer
It is really useful.. @AB1209 – mahe madhi Jan 10 '12 at 9:46
if that's your blog can ya remove some of the drastic stylization of the code snippets? It's pretty much unreadable without copy/pasting it out into another editor. Either way, thanks for the link and the info tho! – edthethird Apr 30 at 20:28

If you happen to use DroidParts, I've just added ClearableEditText.

Here's what it looks like with a custom background & clear icon set to abs__ic_clear_holo_light from ActionBarSherlock:

enter image description here

share|improve this answer
Best solution because the class extends EditText. Thx @yanchenko – tbruyelle May 5 at 16:45
Drawable x = getResources().getDrawable(R.drawable.x);
x.setBounds(0, 0, x.getIntrinsicWidth(), x.getIntrinsicHeight());
mEditText.setCompoundDrawables(null, null, x, null);

where, x is:

enter image description here

share|improve this answer
Still we need to assign an onClickListener right? A quick search gave me this. Guess better solution is to go with the Framelayout one. Thanks though! – VenoM Mar 22 at 9:32

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.