एक एडिटटेक्स्ट के भीतर एक ड्रॉबल पर क्लिक इवेंट को हैंडल करना


238

मैंने EditTextनिम्नलिखित XML का उपयोग करते हुए, विजेट में पाठ का एक चित्र जोड़ा है :

<EditText
  android:id="@+id/txtsearch"
  ...
  android:layout_gravity="center_vertical"
  android:background="@layout/shape"
  android:hint="Enter place,city,state"
  android:drawableRight="@drawable/cross" />

लेकिन EditTextजब एम्बेडेड छवि पर क्लिक किया जाता है , तो मैं साफ़ करना चाहता हूं । मैं यह कैसे कर सकता हूँ?


के संभावित डुप्लिकेट stackoverflow.com/questions/13135447/...
Hardik4560

जवाबों:


358

वास्तव में आपको किसी भी वर्ग का विस्तार करने की आवश्यकता नहीं है। मान लीजिए कि मेरे पास एक DrawableRight के साथ एक EditText editComment है

editComment.setOnTouchListener(new OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        final int DRAWABLE_LEFT = 0;
        final int DRAWABLE_TOP = 1;
        final int DRAWABLE_RIGHT = 2;
        final int DRAWABLE_BOTTOM = 3;

        if(event.getAction() == MotionEvent.ACTION_UP) {
            if(event.getRawX() >= (editComment.getRight() - editComment.getCompoundDrawables()[DRAWABLE_RIGHT].getBounds().width())) {
                // your action here

                return true;
            }
        }
        return false;
    }
});

हम getRawX()क्योंकि हम स्क्रीन पर स्पर्श की वास्तविक स्थिति पाना चाहते हैं, न कि माता-पिता के सापेक्ष।

लेफ्ट साइड क्लिक करने के लिए

if(event.getRawX() <= (editComment.getCompoundDrawables()[DRAWABLE_LEFT].getBounds().width())) 

2
@ user2848783 यह मेरी बाईं ओर खींचने योग्य सेट करने के लिए कैसे?
कादिर हुसैन

10
@AngeloSevent.getRawX()event.getX()
प्रतीक बुटानी

4
एक नोट: "झूठे लौटें;" "सच लौटना है?" अन्यथा ACTION_DOWN के बाद -> ACTION_UP को निकाल नहीं दिया जाएगा।
तोमरका

9
यदि आप पैडिंग जोड़ते हैं, तो आपको यह गणना करने की आवश्यकता है कि साथ ही getRight()TextView का अधिकार प्राप्त होता है, जो कि पैडिंग होने पर ड्रॉबल का अधिकार नहीं होगा। - editComment.getPaddingRight()अपने ifबयान के अंत में जोड़कर काम करना चाहिए।
19

21
यह काम नहीं करता है अगर EditText के माता-पिता को स्क्रीन के बाईं ओर संरेखित नहीं किया गया है। आपको event.getRawX () के बजाय event.getX () का उपयोग करना चाहिए और editText.getRight () के बजाय editText.getWidth () का उपयोग करना चाहिए
फ्लेचर जॉन्स

85

बहुत, बहुत अच्छा, उन सभी का धन्यवाद जिन्होंने इस चर्चा में योगदान दिया। इसलिए यदि आप कक्षा को विस्तार देने की असुविधा से नहीं निपटना चाहते हैं तो आप निम्न कार्य कर सकते हैं (केवल सही योग्य के लिए लागू किया गया है)

this.keyword = (AutoCompleteTextView) findViewById(R.id.search);
this.keyword.setOnTouchListener(new RightDrawableOnTouchListener(keyword) {
        @Override
        public boolean onDrawableTouch(final MotionEvent event) {
            return onClickSearch(keyword,event);
        }
    });

private boolean onClickSearch(final View view, MotionEvent event) {
    // do something
    event.setAction(MotionEvent.ACTION_CANCEL);
    return false;
}

और यहाँ @ मार्क के जवाब के आधार पर नंगे-हड्डी श्रोता कार्यान्वयन है

public abstract class RightDrawableOnTouchListener implements OnTouchListener {
    Drawable drawable;
    private int fuzz = 10;

    /**
     * @param keyword
     */
    public RightDrawableOnTouchListener(TextView view) {
        super();
        final Drawable[] drawables = view.getCompoundDrawables();
        if (drawables != null && drawables.length == 4)
            this.drawable = drawables[2];
    }

    /*
     * (non-Javadoc)
     * 
     * @see android.view.View.OnTouchListener#onTouch(android.view.View, android.view.MotionEvent)
     */
    @Override
    public boolean onTouch(final View v, final MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_DOWN && drawable != null) {
            final int x = (int) event.getX();
            final int y = (int) event.getY();
            final Rect bounds = drawable.getBounds();
            if (x >= (v.getRight() - bounds.width() - fuzz) && x <= (v.getRight() - v.getPaddingRight() + fuzz)
                    && y >= (v.getPaddingTop() - fuzz) && y <= (v.getHeight() - v.getPaddingBottom()) + fuzz) {
                return onDrawableTouch(event);
            }
        }
        return false;
    }

    public abstract boolean onDrawableTouch(final MotionEvent event);

}

3
सही स्थिति प्राप्त करने के लिए आपको v.getLeft () से x और v.getTop () को y में जोड़ना चाहिए।
एंड्रे

3
वास्तव में आप v.getRight()द्वारा प्रतिस्थापित किया जाना चाहिए v.getWidth()
शीघ्र जू

2
ध्यान दें कि आपके फ़ज़ी कारक को DPI के साथ स्केल करना चाहिए, ldpi में 10px कुछ xxhdpi में 10px से पूरी तरह अलग है।
RaB

4
किसके लिए फ़ज़ है? कृपया स्पष्ट करें।
чрій Мазуревич

1
ऐसा लगता है कि fuzzप्रभावी रूप से टेप करने योग्य क्षेत्र को थोड़ा बड़ा बना देता है, जिससे छोटे ड्रॉबल को टैप करना आसान हो जाता है।
प्रतिबंध-जियोइंजीनियरिंग

28

निम्नलिखित को धयान मे रखते हुए। यह सबसे सुरुचिपूर्ण समाधान नहीं है, लेकिन यह काम करता है, मैंने अभी इसका परीक्षण किया है।

  1. एक अनुकूलित EditTextवर्ग बनाएँ CustomEditText.java:

    import android.content.Context;
    import android.graphics.Rect;
    import android.graphics.drawable.Drawable;
    import android.util.AttributeSet;
    import android.view.MotionEvent;
    import android.widget.EditText;
    
    public class CustomEditText extends EditText
    {
      private Drawable dRight;
      private Rect rBounds;
    
      public CustomEditText(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
      }
      public CustomEditText(Context context, AttributeSet attrs) {
        super(context, attrs);
      }
      public CustomEditText(Context context) {
        super(context);
      }
    
      @Override
      public void setCompoundDrawables(Drawable left, Drawable top,
          Drawable right, Drawable bottom)
      {
        if(right !=null)
        {
          dRight = right;
        }
        super.setCompoundDrawables(left, top, right, bottom);
      }
    
      @Override
      public boolean onTouchEvent(MotionEvent event)
      {
    
        if(event.getAction() == MotionEvent.ACTION_UP && dRight!=null)
        {
          rBounds = dRight.getBounds();
          final int x = (int)event.getX();
          final int y = (int)event.getY();
          //System.out.println("x:/y: "+x+"/"+y);
          //System.out.println("bounds: "+bounds.left+"/"+bounds.right+"/"+bounds.top+"/"+bounds.bottom);
          //check to make sure the touch event was within the bounds of the drawable
          if(x>=(this.getRight()-rBounds.width()) && x<=(this.getRight()-this.getPaddingRight())
              && y>=this.getPaddingTop() && y<=(this.getHeight()-this.getPaddingBottom()))
          {
            //System.out.println("touch");
            this.setText("");
            event.setAction(MotionEvent.ACTION_CANCEL);//use this to prevent the keyboard from coming up
          }
        }
        return super.onTouchEvent(event);
      }
    
      @Override
      protected void finalize() throws Throwable
      {
        dRight = null;
        rBounds = null;
        super.finalize();
      }
    }
  2. अपने लेआउट XML को इसमें बदलें (जहां com.exampleआपका वास्तविक प्रोजेक्ट पैकेज नाम है):

    <com.example.CustomEditText
        android:id="@+id/txtsearch"android:layout_gravity="center_vertical"
        android:background="@layout/shape"
        android:hint="Enter place,city,state"
        android:drawableRight="@drawable/cross" 
    />
  3. अंत में, इसे (या कुछ इसी तरह) अपनी गतिविधि में जोड़ें:

    
    CustomEditText et = (CustomEditText) this.findViewById(R.id.txtsearch);
    

मैं नेस्टेबल के लिए स्पर्श सीमा की गणना के साथ थोड़ा दूर हो सकता हूं लेकिन आपको यह विचार मिलता है।

आशा है कि ये आपकी मदद करेगा।


वास्तव में, मैंने सुना है कि मोशन को संशोधित करना हतोत्साहित करने वाला अभ्यास है, जिसके कारण अपरिभाषित व्यवहार होता है, जो अलग-अलग प्लेटफार्मों पर टूट जाएगा, इसलिए शायद एक बेहतर समाधान हो सकता है stackoverflow.com/a/6235602
Giulio Piancelli

@ RyanM, मैं के TextViewबजाय इस्तेमाल किया EditText। मैंने कोड लिया और यदि मैं TextViewआइकन पर क्लिक करता हूं (आइकन पर नहीं, लेकिन किसी भी स्थान पर TextView), तो विधि onTouchEvent(MotionEvent event)को कहा जाता है। तो, मैं लागू कर सकते हैं OnClickListenerएक सामान्य के लिए TextViewइस तरह के रूप में किसी भी अतिरिक्त कक्षाओं के बिनाCustomEditText
Maksim Dmitriev

@RyanM, उपयोग करने के बजाय उपयोग this.getRight()-rBounds.width()क्यों नहीं this.getMeasuredWidth() - this.getCompoundPaddingRight()? क्या यह ड्रॉबल की पैडिंग का ख्याल नहीं रखेगा और ड्रॉबल की बाध्यता से भी छुटकारा दिलाएगा?
वीनो

@RMM कैसे पार बटन क्लिक घटना के स्पर्श पर छवि को बदलने के लिए?
कादिर हुसैन

EditTextपूर्व-लॉलीपॉप उपकरणों पर ऐप्पोमैट का उपयोग करते समय कस्टम संस्करण उचित विगेट्स टिनिंग का समर्थन नहीं करते हैं। AppCompatEditTextअपने कस्टम EditText के एक मूल वर्ग के रूप में उपयोग करें
Tomask

24

मैंने एक उपयोगी सार वर्ग DrawableClickListener बनाया, जो OnTouchListener को लागू करता है

DrawableClickListener वर्ग के अतिरिक्त , मैंने 4 अतिरिक्त अमूर्त कक्षाएं भी बनाईं , जो DrawableClickListener वर्ग का विस्तार करती हैं और सही वृत्त का चतुर्थ भाग के लिए ड्रा करने योग्य क्षेत्र पर क्लिक करती हैं।

  • LeftDrawableClickListener
  • TopDrawableClickListener
  • RightDrawableClickListener
  • BottomDrawableClickListener

बिंदु पर विचार करें

एक बात पर विचार करना है कि अगर इस तरह से किया जाता है तो छवियों का आकार परिवर्तन नहीं किया जाता है; इस प्रकार Res / drawable folder (s) में डालने से पहले चित्रों को सही ढंग से स्केल किया जाना चाहिए ।

यदि आप एक निर्धारित करते LinearLayout एक युक्त imageView और एक TextView , यह छवि का आकार प्रदर्शित किया जा रहा हेरफेर करने के लिए एक बहुत आसान है।


activity_my.xml

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

    <TextView
        android:id="@+id/myTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="replace this with a variable"
        android:textSize="30sp"
        android:drawableLeft="@drawable/my_left_image"
        android:drawableRight="@drawable/my_right_image"
        android:drawablePadding="9dp" />

</RelativeLayout>

MyActivity.java

package com.company.project.core;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class MyActivity extends Activity
{

    @Override
    protected void onCreate( Bundle savedInstanceState )
    {
        super.onCreate( savedInstanceState );
        setContentView( R.layout.activity_my );

        final TextView myTextView = (TextView) this.findViewById( R.id.myTextView );
        myTextView.setOnTouchListener( new DrawableClickListener.LeftDrawableClickListener(myTextView)
        {
            @Override
            public boolean onDrawableClick()
            {
                // TODO : insert code to perform on clicking of the LEFT drawable image...

                return true;
            }
        } );
        myTextView.setOnTouchListener( new DrawableClickListener.RightDrawableClickListener(myTextView)
        {
            @Override
            public boolean onDrawableClick()
            {
                // TODO : insert code to perform on clicking of the RIGHT drawable image...

                return true;
            }
        } );
    }

}

DrawableClickListener.java

package com.company.project.core;

import android.graphics.Rect;
import android.graphics.drawable.Drawable;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.TextView;

/**
 * This class can be used to define a listener for a compound drawable.
 * 
 * @author Matthew Weiler
 * */
public abstract class DrawableClickListener implements OnTouchListener
{

    /* PUBLIC CONSTANTS */
    /**
     * This represents the left drawable.
     * */
    public static final int DRAWABLE_INDEX_LEFT = 0;
    /**
     * This represents the top drawable.
     * */
    public static final int DRAWABLE_INDEX_TOP = 1;
    /**
     * This represents the right drawable.
     * */
    public static final int DRAWABLE_INDEX_RIGHT = 2;
    /**
     * This represents the bottom drawable.
     * */
    public static final int DRAWABLE_INDEX_BOTTOM = 3;
    /**
     * This stores the default value to be used for the
     * {@link DrawableClickListener#fuzz}.
     * */
    public static final int DEFAULT_FUZZ = 10;

    /* PRIVATE VARIABLES */
    /**
     * This stores the number of pixels of &quot;fuzz&quot; that should be
     * included to account for the size of a finger.
     * */
    private final int fuzz;
    /**
     * This will store a reference to the {@link Drawable}.
     * */
    private Drawable drawable = null;

    /* CONSTRUCTORS */
    /**
     * This will create a new instance of a {@link DrawableClickListener}
     * object.
     * 
     * @param view
     *            The {@link TextView} that this {@link DrawableClickListener}
     *            is associated with.
     * @param drawableIndex
     *            The index of the drawable that this
     *            {@link DrawableClickListener} pertains to.
     *            <br />
     *            <i>use one of the values:
     *            <b>DrawableOnTouchListener.DRAWABLE_INDEX_*</b></i>
     */
    public DrawableClickListener( final TextView view, final int drawableIndex )
    {
        this( view, drawableIndex, DrawableClickListener.DEFAULT_FUZZ );
    }

    /**
     * This will create a new instance of a {@link DrawableClickListener}
     * object.
     * 
     * @param view
     *            The {@link TextView} that this {@link DrawableClickListener}
     *            is associated with.
     * @param drawableIndex
     *            The index of the drawable that this
     *            {@link DrawableClickListener} pertains to.
     *            <br />
     *            <i>use one of the values:
     *            <b>DrawableOnTouchListener.DRAWABLE_INDEX_*</b></i>
     * @param fuzzOverride
     *            The number of pixels of &quot;fuzz&quot; that should be
     *            included to account for the size of a finger.
     */
    public DrawableClickListener( final TextView view, final int drawableIndex, final int fuzz )
    {
        super();
        this.fuzz = fuzz;
        final Drawable[] drawables = view.getCompoundDrawables();
        if ( drawables != null && drawables.length == 4 )
        {
            this.drawable = drawables[drawableIndex];
        }
    }

    /* OVERRIDDEN PUBLIC METHODS */
    @Override
    public boolean onTouch( final View v, final MotionEvent event )
    {
        if ( event.getAction() == MotionEvent.ACTION_DOWN && drawable != null )
        {
            final int x = (int) event.getX();
            final int y = (int) event.getY();
            final Rect bounds = drawable.getBounds();
            if ( this.isClickOnDrawable( x, y, v, bounds, this.fuzz ) )
            {
                return this.onDrawableClick();
            }
        }
        return false;
    }

    /* PUBLIC METHODS */
    /**
     * 
     * */
    public abstract boolean isClickOnDrawable( final int x, final int y, final View view, final Rect drawableBounds, final int fuzz );

    /**
     * This method will be fired when the drawable is touched/clicked.
     * 
     * @return
     *         <code>true</code> if the listener has consumed the event;
     *         <code>false</code> otherwise.
     * */
    public abstract boolean onDrawableClick();

    /* PUBLIC CLASSES */
    /**
     * This class can be used to define a listener for a <b>LEFT</b> compound
     * drawable.
     * */
    public static abstract class LeftDrawableClickListener extends DrawableClickListener
    {

        /* CONSTRUCTORS */
        /**
         * This will create a new instance of a
         * {@link LeftDrawableClickListener} object.
         * 
         * @param view
         *            The {@link TextView} that this
         *            {@link LeftDrawableClickListener} is associated with.
         */
        public LeftDrawableClickListener( final TextView view )
        {
            super( view, DrawableClickListener.DRAWABLE_INDEX_LEFT );
        }

        /**
         * This will create a new instance of a
         * {@link LeftDrawableClickListener} object.
         * 
         * @param view
         *            The {@link TextView} that this
         *            {@link LeftDrawableClickListener} is associated with.
         * @param fuzzOverride
         *            The number of pixels of &quot;fuzz&quot; that should be
         *            included to account for the size of a finger.
         */
        public LeftDrawableClickListener( final TextView view, final int fuzz )
        {
            super( view, DrawableClickListener.DRAWABLE_INDEX_LEFT, fuzz );
        }

        /* PUBLIC METHODS */
        public boolean isClickOnDrawable( final int x, final int y, final View view, final Rect drawableBounds, final int fuzz )
        {
            if ( x >= ( view.getPaddingLeft() - fuzz ) )
            {
                if ( x <= ( view.getPaddingLeft() + drawableBounds.width() + fuzz ) )
                {
                    if ( y >= ( view.getPaddingTop() - fuzz ) )
                    {
                        if ( y <= ( view.getHeight() - view.getPaddingBottom() + fuzz ) )
                        {
                            return true;
                        }
                    }
                }
            }
            return false;
        }

    }

    /**
     * This class can be used to define a listener for a <b>TOP</b> compound
     * drawable.
     * */
    public static abstract class TopDrawableClickListener extends DrawableClickListener
    {

        /* CONSTRUCTORS */
        /**
         * This will create a new instance of a {@link TopDrawableClickListener}
         * object.
         * 
         * @param view
         *            The {@link TextView} that this
         *            {@link TopDrawableClickListener} is associated with.
         */
        public TopDrawableClickListener( final TextView view )
        {
            super( view, DrawableClickListener.DRAWABLE_INDEX_TOP );
        }

        /**
         * This will create a new instance of a {@link TopDrawableClickListener}
         * object.
         * 
         * @param view
         *            The {@link TextView} that this
         *            {@link TopDrawableClickListener} is associated with.
         * @param fuzzOverride
         *            The number of pixels of &quot;fuzz&quot; that should be
         *            included to account for the size of a finger.
         */
        public TopDrawableClickListener( final TextView view, final int fuzz )
        {
            super( view, DrawableClickListener.DRAWABLE_INDEX_TOP, fuzz );
        }

        /* PUBLIC METHODS */
        public boolean isClickOnDrawable( final int x, final int y, final View view, final Rect drawableBounds, final int fuzz )
        {
            if ( x >= ( view.getPaddingLeft() - fuzz ) )
            {
                if ( x <= ( view.getWidth() - view.getPaddingRight() + fuzz ) )
                {
                    if ( y >= ( view.getPaddingTop() - fuzz ) )
                    {
                        if ( y <= ( view.getPaddingTop() + drawableBounds.height() + fuzz ) )
                        {
                            return true;
                        }
                    }
                }
            }
            return false;
        }

    }

    /**
     * This class can be used to define a listener for a <b>RIGHT</b> compound
     * drawable.
     * */
    public static abstract class RightDrawableClickListener extends DrawableClickListener
    {

        /* CONSTRUCTORS */
        /**
         * This will create a new instance of a
         * {@link RightDrawableClickListener} object.
         * 
         * @param view
         *            The {@link TextView} that this
         *            {@link RightDrawableClickListener} is associated with.
         */
        public RightDrawableClickListener( final TextView view )
        {
            super( view, DrawableClickListener.DRAWABLE_INDEX_RIGHT );
        }

        /**
         * This will create a new instance of a
         * {@link RightDrawableClickListener} object.
         * 
         * @param view
         *            The {@link TextView} that this
         *            {@link RightDrawableClickListener} is associated with.
         * @param fuzzOverride
         *            The number of pixels of &quot;fuzz&quot; that should be
         *            included to account for the size of a finger.
         */
        public RightDrawableClickListener( final TextView view, final int fuzz )
        {
            super( view, DrawableClickListener.DRAWABLE_INDEX_RIGHT, fuzz );
        }

        /* PUBLIC METHODS */
        public boolean isClickOnDrawable( final int x, final int y, final View view, final Rect drawableBounds, final int fuzz )
        {
            if ( x >= ( view.getWidth() - view.getPaddingRight() - drawableBounds.width() - fuzz ) )
            {
                if ( x <= ( view.getWidth() - view.getPaddingRight() + fuzz ) )
                {
                    if ( y >= ( view.getPaddingTop() - fuzz ) )
                    {
                        if ( y <= ( view.getHeight() - view.getPaddingBottom() + fuzz ) )
                        {
                            return true;
                        }
                    }
                }
            }
            return false;
        }

    }

    /**
     * This class can be used to define a listener for a <b>BOTTOM</b> compound
     * drawable.
     * */
    public static abstract class BottomDrawableClickListener extends DrawableClickListener
    {

        /* CONSTRUCTORS */
        /**
         * This will create a new instance of a
         * {@link BottomDrawableClickListener} object.
         * 
         * @param view
         *            The {@link TextView} that this
         *            {@link BottomDrawableClickListener} is associated with.
         */
        public BottomDrawableClickListener( final TextView view )
        {
            super( view, DrawableClickListener.DRAWABLE_INDEX_BOTTOM );
        }

        /**
         * This will create a new instance of a
         * {@link BottomDrawableClickListener} object.
         * 
         * @param view
         *            The {@link TextView} that this
         *            {@link BottomDrawableClickListener} is associated with.
         * @param fuzzOverride
         *            The number of pixels of &quot;fuzz&quot; that should be
         *            included to account for the size of a finger.
         */
        public BottomDrawableClickListener( final TextView view, final int fuzz )
        {
            super( view, DrawableClickListener.DRAWABLE_INDEX_BOTTOM, fuzz );
        }

        /* PUBLIC METHODS */
        public boolean isClickOnDrawable( final int x, final int y, final View view, final Rect drawableBounds, final int fuzz )
        {
            if ( x >= ( view.getPaddingLeft() - fuzz ) )
            {
                if ( x <= ( view.getWidth() - view.getPaddingRight() + fuzz ) )
                {
                    if ( y >= ( view.getHeight() - view.getPaddingBottom() - drawableBounds.height() - fuzz ) )
                    {
                        if ( y <= ( view.getHeight() - view.getPaddingBottom() + fuzz ) )
                        {
                            return true;
                        }
                    }
                }
            }
            return false;
        }

    }

}

14

यह बहुत सरल है। कहते हैं कि आपके पास अपने EditText 'txtsearch' के बाईं ओर एक चित्र है। इसके बाद टोटका करेंगे।

EditText txtsearch = (EditText) findViewById(R.id.txtsearch);
txtsearch.setOnTouchListener(new OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        if(event.getAction() == MotionEvent.ACTION_UP) {
            if(event.getRawX() <= txtsearch.getTotalPaddingLeft()) {
                // your action for drawable click event

             return true;
            }
        }
        return false;
    }
});

यदि आप सही पठनीय परिवर्तन के लिए चाहते हैं तो निम्न कथन:

if(event.getRawX() >= txtsearch.getRight() - txtsearch.getTotalPaddingRight())

इसी तरह, आप इसे सभी कंपाउंड ड्रॉबल्स के लिए कर सकते हैं।

txtsearch.getTotalPaddingTop()
txtsearch.getTotalPaddingBottom()

यह विधि कॉल किसी भी ड्रॉइंग सहित उस तरफ के सभी पैडिंग को लौटाती है। इसका उपयोग आप TextView, Button आदि के लिए भी कर सकते हैं।

Android डेवलपर साइट से संदर्भ के लिए यहां क्लिक करें


1
मुझे लगता है कि यह एक अच्छा जवाब है, उस हिस्से को छोड़कर जहां हर जगह सच लौटा है। मैं केवल तभी वापस लौटने का सुझाव दूंगा जब घटना का उपभोग करने की आवश्यकता हो (सही क्षेत्र में स्पर्श इशारा हुआ)।
Bianca Daniciuc

12

मुझे लगता है कि अगर हम कुछ तरकीबों का उपयोग करें तो यह बहुत आसान है :)

  1. अपने आइकन के साथ एक छवि बटन बनाएं और उसका पृष्ठभूमि रंग पारदर्शी होने के लिए सेट करें ।
  2. EditText और दाहिने हाथ की तरफ coz की छवि बटन रखो
  3. अपने कार्य को निष्पादित करने के लिए बटन के ऑन्कलिक श्रोता को लागू करें

किया हुआ


1
RelativeLayoutउचित स्थिति प्राप्त करने के लिए उपयोग किया जाता है, बस अन्य समाधानों की तुलना में कम जटिल लगता है, और बनाए रखने के लिए बहुत कम कोड।
C0D3LIC1OU5

12

उस अंतिम योगदान का उपयोग contains(x,y)सीधे परिणाम पर नहीं होगा getBounds()(सिवाय संयोग के, जब "बाएं" ड्राबेल का उपयोग करके)। getBoundsविधि केवल प्रदान करता है Rect0,0 में मूल के साथ सामान्यीकृत drawable आइटम के निर्णायक अंक - हां, तो आप वास्तव में जानने के लिए कि क्लिक के संदर्भ में drawable के क्षेत्र में है मूल पोस्ट की गणित क्या करने की जरूरत EditText के आयामों से युक्त, लेकिन इसे शीर्ष, दाएं, बाएं आदि के लिए बदलें। वैकल्पिक रूप से आप वर्णन कर सकते हैं Rectकि वास्तव में निर्देशांक EditTextकंटेनर और उपयोग में इसकी स्थिति के सापेक्ष है contains(), हालांकि अंत में आप एक ही गणित कर रहे हैं।

उन दोनों को मिलाकर आपको एक पूर्ण समाधान मिलता है, मैंने केवल एक उदाहरण विशेषता जोड़ी है जो consumesEventएपीआई उपयोगकर्ता को यह तय करने देता है कि क्लिक इवेंट को सेट करने ACTION_CANCELया न करने के लिए इसके परिणाम का उपयोग करके पास किया जाना चाहिए या नहीं।

इसके अलावा, मैं नहीं देख सकते हैं क्यों boundsऔर actionX, actionYमान उदाहरण बल्कि गुण सिर्फ ढेर पर स्थानीय से कर रहे हैं।

यहाँ एक कार्यान्वयन से एक कटआउट है जो ऊपर दिए गए के आधार पर मैंने एक साथ रखा था। यह एक समस्या को ठीक करता है जो उस घटना को ठीक से उपभोग करने के लिए है जिसे आपको झूठे वापस करने की आवश्यकता है। यह एक "फ़ज़" कारक जोड़ता है। एक EditTextक्षेत्र में वॉयस कंट्रोल आइकन के मेरे उपयोग के मामले में , मुझे क्लिक करने में मुश्किल हुई, इसलिए फ़ज़ को प्रभावी सीमाएं बढ़ जाती हैं जिन्हें ड्रॉबल पर क्लिक करने पर विचार किया जाता है। मेरे लिए 15अच्छा काम किया। मुझे केवल जरूरत थी drawableRightइसलिए मैंने कुछ जगह बचाने के लिए गणित को दूसरों में प्लग नहीं किया, लेकिन आप विचार देखते हैं।

package com.example.android;

import android.content.Context;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.widget.EditText;
import android.graphics.Rect;

import com.example.android.DrawableClickListener;

public class ClickableButtonEditText extends EditText {
  public static final String LOG_TAG = "ClickableButtonEditText";

  private Drawable drawableRight;
  private Drawable drawableLeft;
  private Drawable drawableTop;
  private Drawable drawableBottom;
  private boolean consumeEvent = false;
  private int fuzz = 0;

  private DrawableClickListener clickListener;

  public ClickableButtonEditText(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
  }

  public ClickableButtonEditText(Context context, AttributeSet attrs) {
    super(context, attrs);
  }

  public ClickableButtonEditText(Context context) {
    super(context);
  }

  public void consumeEvent() {
    this.setConsumeEvent(true);
  }

  public void setConsumeEvent(boolean b) {
    this.consumeEvent = b;
  }

  public void setFuzz(int z) {
    this.fuzz = z;
  }

  public int getFuzz() {
    return fuzz;
  }

  @Override
  public void setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) {
    if (right != null) {
      drawableRight = right;
    }

    if (left != null) {
      drawableLeft = left;
    }
    super.setCompoundDrawables(left, top, right, bottom);
  }

  @Override
  public boolean onTouchEvent(MotionEvent event) {
    if (event.getAction() == MotionEvent.ACTION_DOWN) {
      int x, y;
      Rect bounds;
      x = (int) event.getX();
      y = (int) event.getY();
      // this works for left since container shares 0,0 origin with bounds
      if (drawableLeft != null) {
        bounds = drawableLeft.getBounds();
        if (bounds.contains(x - fuzz, y - fuzz)) {
          clickListener.onClick(DrawableClickListener.DrawablePosition.LEFT);
          if (consumeEvent) {
            event.setAction(MotionEvent.ACTION_CANCEL);
            return false;
          }
        }
      } else if (drawableRight != null) {
        bounds = drawableRight.getBounds();
        if (x >= (this.getRight() - bounds.width() - fuzz) && x <= (this.getRight() - this.getPaddingRight() + fuzz) 
              && y >= (this.getPaddingTop() - fuzz) && y <= (this.getHeight() - this.getPaddingBottom()) + fuzz) {

          clickListener.onClick(DrawableClickListener.DrawablePosition.RIGHT);
          if (consumeEvent) {
            event.setAction(MotionEvent.ACTION_CANCEL);
            return false;
          }
        }
      } else if (drawableTop != null) {
        // not impl reader exercise :)
      } else if (drawableBottom != null) {
        // not impl reader exercise :)
      }
    }

    return super.onTouchEvent(event);
  }

  @Override
  protected void finalize() throws Throwable {
    drawableRight = null;
    drawableBottom = null;
    drawableLeft = null;
    drawableTop = null;
    super.finalize();
  }

  public void setDrawableClickListener(DrawableClickListener listener) {
    this.clickListener = listener;
  }
}

8

रयानएम द्वारा विचार पर विस्तार करते हुए मैंने एक अधिक लचीला संस्करण बनाया है, जो सभी ड्रॉएबल प्रकारों (शीर्ष, नीचे, बाएं, दाएं) का समर्थन करता है। जबकि नीचे दिया गया कोड TextView का विस्तार करता है, इसे एक EditText के लिए एडाप्ट करना केवल "EditText का विस्तार करने" के साथ "TextView का विस्तार" स्वैप करने का मामला है। एक्सएमएल से तात्कालिकता विजेट रेयानएम के उदाहरण के समान है, विजेट नाम बार।


import android.content.Context;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.util.Log;
import android.view.MotionEvent;
import android.widget.TextView;

import com.example.DrawableClickListener.DrawablePosition;

public class ButtonTextView extends TextView {

private Drawable    drawableRight;
private Drawable    drawableLeft;
private Drawable    drawableTop;
private Drawable    drawableBottom;

private int     actionX, actionY;

private DrawableClickListener clickListener;

public ButtonTextView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}

public ButtonTextView(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public ButtonTextView(Context context) {
    super(context);
}

@Override
public void setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom) {
    if (right != null) {
        drawableRight = right;
    }

    if (left != null) {
        drawableLeft = left;
    }

    if (top != null) {
        drawableTop = top;
    }

    if (bottom != null) {
        drawableBottom = bottom;
    }

    super.setCompoundDrawables(left, top, right, bottom);
}

@Override
public boolean onTouchEvent(MotionEvent event) {

    if (event.getAction() == MotionEvent.ACTION_DOWN) {
        actionX = (int) event.getX();
        actionY = (int) event.getY();

        if (drawableBottom != null && drawableBottom.getBounds().contains(actionX, actionY)) {
            clickListener.onClick(DrawablePosition.BOTTOM);
            return super.onTouchEvent(event);
        }

        if (drawableTop != null && drawableTop.getBounds().contains(actionX, actionY)) {
            clickListener.onClick(DrawablePosition.TOP);
            return super.onTouchEvent(event);
        }

        if (drawableLeft != null && drawableLeft.getBounds().contains(actionX, actionY)) {
            clickListener.onClick(DrawablePosition.LEFT);
            return super.onTouchEvent(event);
        }

        if (drawableRight != null && drawableRight.getBounds().contains(actionX, actionY)) {
            clickListener.onClick(DrawablePosition.RIGHT);
            return super.onTouchEvent(event);
        }
    }


    return super.onTouchEvent(event);
}

@Override
protected void finalize() throws Throwable {
    drawableRight = null;
    drawableBottom = null;
    drawableLeft = null;
    drawableTop = null;
    super.finalize();
}

public void setDrawableClickListener(DrawableClickListener listener) {
    this.clickListener = listener;
}}

DrawableClickListener इस के रूप में सरल है:

public interface DrawableClickListener {

public static enum DrawablePosition { TOP, BOTTOM, LEFT, RIGHT };
public void onClick(DrawablePosition target); }

और फिर वास्तविक कार्यान्वयन:

class example implements DrawableClickListener {
public void onClick(DrawablePosition target) {
    switch (target) {
        case LEFT:
            doSomethingA();
            break;

        case RIGHT:
            doSomethingB();
            break;

        case BOTTOM:
            doSomethingC();
            break;

        case TOP:
            doSomethingD();
            break;

        default:
            break;
    }
}}

ps: यदि आप श्रोता को सेट नहीं करते हैं, तो TextView को छूने से NullPointerException पैदा होगी। आप कोड में कुछ और व्यामोह जोड़ना चाह सकते हैं।


ऐसा लगता है कि आपका कोड काम नहीं कर रहा है, मैंने अभी परीक्षण किया है और जब मैं ड्रॉबल को छूता हूं तो कुछ भी नहीं होता है।
थियागो

8

कोटलिन एक शानदार भाषा है जहाँ प्रत्येक वर्ग को नए तरीकों के साथ बढ़ाया जा सकता है। EditText वर्ग के लिए नई विधि प्रस्तुत करते हैं जो क्लिक को दायीं ओर आकर्षित करती है।

fun EditText.onRightDrawableClicked(onClicked: (view: EditText) -> Unit) {
this.setOnTouchListener { v, event ->
    var hasConsumed = false
    if (v is EditText) {
        if (event.x >= v.width - v.totalPaddingRight) {
            if (event.action == MotionEvent.ACTION_UP) {
                onClicked(this)
            }
            hasConsumed = true
        }
    }
    hasConsumed
}
}

आप देख सकते हैं कि कॉलबैक फ़ंक्शन को तर्क के रूप में लिया जाता है जिसे उपयोगकर्ता द्वारा राइट ड्रॉबल पर क्लिक करने पर कहा जाता है।

val username = findViewById<EditText>(R.id.username_text)
    username.onRightDrawableClicked {
        it.text.clear()
    }

7

यह मेरे लिए काम कर रहा है,

mEditTextSearch.addTextChangedListener(new TextWatcher() {

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {
            if(s.length()>0){
                mEditTextSearch.setCompoundDrawablesWithIntrinsicBounds(null, null, getResources().getDrawable(android.R.drawable.ic_delete), null);
            }else{
                mEditTextSearch.setCompoundDrawablesWithIntrinsicBounds(null, null, getResources().getDrawable(R.drawable.abc_ic_search), null);
            }
        }
        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {
        }
        @Override
        public void afterTextChanged(Editable s) {
        }
    });
    mEditTextSearch.setOnTouchListener(new OnTouchListener() {
        @SuppressLint("ClickableViewAccessibility")
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            if(event.getAction() == MotionEvent.ACTION_UP) {
                if(mEditTextSearch.getCompoundDrawables()[2]!=null){
                    if(event.getX() >= (mEditTextSearch.getRight()- mEditTextSearch.getLeft() - mEditTextSearch.getCompoundDrawables()[2].getBounds().width())) {
                        mEditTextSearch.setText("");
                    }
                }
            }
            return false;
        }
    });

हिट आयत की शुरुआत का निर्धारण करते समय पाठ को संपादित करने के लिए सही पैडिंग, यदि कोई हो, को घटाने की आवश्यकता है।
farid_z

4

मुझे पता है कि यह काफी पुराना है, लेकिन मुझे हाल ही में कुछ ऐसा ही करना पड़ा ... यह देखने के बाद कि यह कितना मुश्किल है, मैं एक बहुत खुशखबरी के साथ आया:

  1. एक XML लेआउट बनाएं जिसमें EditText और Image शामिल हों
  2. Subclass FrameLayout और XML लेआउट को फुलाते हैं
  3. क्लिक श्रोता और आप चाहते हैं किसी भी अन्य व्यवहार के लिए कोड जोड़ें

मेरे मामले में, मुझे एक EditText की आवश्यकता थी जिसमें एक बटन के साथ पाठ को साफ़ करने की क्षमता थी। मैं चाहता था कि यह SearchView की तरह दिखे, लेकिन कई कारणों से मैं उस वर्ग का उपयोग नहीं करना चाहता था। नीचे दिए गए उदाहरण से पता चलता है कि मैंने इसे कैसे पूरा किया। भले ही इसका फोकस परिवर्तन से कोई लेना-देना नहीं है, सिद्धांत समान हैं और मुझे लगा कि वास्तविक वर्किंग कोड को पोस्ट करने की तुलना में यह अधिक फायदेमंद होगा एक उदाहरण उदाहरण के लिए जैसा कि मेरा इरादा है, ठीक से काम नहीं कर सकता है:

यहाँ मेरा लेआउट है: clearable_edit_text.xml

<merge
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/edit_text_field"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

    <!-- NOTE: Visibility cannot be set to "gone" or the padding won't get set properly in code -->
    <ImageButton
        android:id="@+id/edit_text_clear"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right|center_vertical"
        android:background="@drawable/ic_cancel_x"
        android:visibility="invisible"/>
</merge>

और यहाँ वह वर्ग है जो उस लेआउट को बढ़ाता है: ClearableEditText.java

public class ClearableEditText extends FrameLayout {
    private boolean mPaddingSet = false;

    /**
     * Creates a new instance of this class.
     * @param context The context used to create the instance
     */
    public ClearableEditText (final Context context) {
        this(context, null, 0);
    }

    /**
     * Creates a new instance of this class.
     * @param context The context used to create the instance
     * @param attrs The attribute set used to customize this instance
     */
    public ClearableEditText (final Context context, final AttributeSet attrs) {
        this(context, attrs, 0);
    }

    /**
     * Creates a new instance of this class.
     * @param context The context used to create the instance
     * @param attrs The attribute set used to customize this instance
     * @param defStyle The default style to be applied to this instance
     */
    public ClearableEditText (final Context context, final AttributeSet attrs, final int defStyle) {
        super(context, attrs, defStyle);

        final LayoutInflater inflater = LayoutInflater.from(context);
        inflater.inflate(R.layout.clearable_edit_text, this, true);
    }

    @Override
    protected void onFinishInflate () {
        super.onFinishInflate();

        final EditText editField = (EditText) findViewById(R.id.edit_text_field);
        final ImageButton clearButton = (ImageButton) findViewById(R.id.edit_text_clear);

        //Set text listener so we can show/hide the close button based on whether or not it has text
        editField.addTextChangedListener(new TextWatcher() {
            @Override
            public void beforeTextChanged (final CharSequence charSequence, final int i, final int i2, final int i3) {
                //Do nothing here
            }

            @Override
            public void onTextChanged (final CharSequence charSequence, final int i, final int i2, final int i3) {
                //Do nothing here
            }

            @Override
            public void afterTextChanged (final Editable editable) {
                clearButton.setVisibility(editable.length() > 0 ? View.VISIBLE : View.INVISIBLE);
            }
        });

        //Set the click listener for the button to clear the text. The act of clearing the text will hide this button because of the
        //text listener
        clearButton.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick (final View view) {
                editField.setText("");
            }
        });
    }

    @Override
    protected void onLayout (final boolean changed, final int left, final int top, final int right, final int bottom) {
        super.onLayout(changed, left, top, right, bottom);

        //Set padding here in the code so the text doesn't run into the close button. This could be done in the XML layout, but then if
        //the size of the image changes then we constantly need to tweak the padding when the image changes. This way it happens automatically
        if (!mPaddingSet) {
            final EditText editField = (EditText) findViewById(R.id.edit_text_field);
            final ImageButton clearButton = (ImageButton) findViewById(R.id.edit_text_clear);

            editField.setPadding(editField.getPaddingLeft(), editField.getPaddingTop(), clearButton.getWidth(), editField.getPaddingBottom());
            mPaddingSet = true;
        }
    }
}

इस उत्तर को प्रश्न के अनुरूप अधिक बनाने के लिए निम्नलिखित कदम उठाए जाने चाहिए:

  1. जो भी आप चाहते हैं, उसे ड्रा करने योग्य संसाधन बदलें ... मेरे मामले में यह एक ग्रे एक्स था
  2. एडिट टेक्स्ट में फोकस चेंज श्रोता जोड़ें ...

3

और अगर दायीं ओर बाईं ओर है, तो यह आपकी मदद करेगा। (RTL लेआउट के साथ काम करने वालों के लिए)

 editComment.setOnTouchListener(new OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            final int DRAWABLE_LEFT = 0;
            final int DRAWABLE_TOP = 1;
            final int DRAWABLE_RIGHT = 2;
            final int DRAWABLE_BOTTOM = 3;

            if(event.getAction() == MotionEvent.ACTION_UP) {
                if (event.getRawX() <= (searchbox.getLeft() + searchbox.getCompoundDrawables()[DRAWABLE_LEFT].getBounds().width())) {
                                     // your action here

                 return true;
                }
            }
            return false;
        }
    });

यह सापेक्ष स्थिति "getRight" के साथ पूर्ण स्थान "getRawX" को मिला रहा है। यदि आप EditText पर दायाँ या बायाँ मार्जिन सेट करते हैं, तो आप देखेंगे कि यह कैसे टूटता है क्योंकि क्लिक गलत निर्देशांक पर चालू हो जाता है।
सोती

3

बस निम्नलिखित कोड को कॉपी पेस्ट करें और यह चाल करता है।

editMsg.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            final int DRAWABLE_LEFT = 0;
            final int DRAWABLE_TOP = 1;
            final int DRAWABLE_RIGHT = 2;
            final int DRAWABLE_BOTTOM = 3;

            if(event.getAction() == MotionEvent.ACTION_UP) {
                if(event.getRawX() >= (editMsg.getRight() - editMsg.getCompoundDrawables()[DRAWABLE_RIGHT].getBounds().width())) {
                    // your action here

                    Toast.makeText(ChatActivity.this, "Message Sent", Toast.LENGTH_SHORT).show();
                    return true;
                }
            }
            return false;
        }
    });

1
इसने मेरे लिए काम किया लेकिन मुझे getRawX () के बजाय गेटएक्स () का उपयोग करना पड़ा। मुझे लगता है कि getRawX () केवल तभी काम करता है जब दृश्य स्क्रीन के बाएं किनारे पर हो।
ग्लेन

1
पदों की गणना गलत है। "गेटरॉइट ()" के साथ पूर्ण समन्वय, "getRight ()" जैसे रिश्तेदार के साथ मिल रहा है
Sotti

3

पिछले समाधानों में से किसी ने मेरे लिए ज़ामरीन एंड्रॉइड में काम नहीं किया । मैं निम्नलिखित का उपयोग करके काम करने योग्य दायाँ क्लिक श्रोता प्राप्त करने में सक्षम था:

निम्न OnEditTextTouchईवेंट श्रोता बनाएं :

  private void OnEditTextTouch(object sender, View.TouchEventArgs e)
    {
        var rightDrawable = _autoCompleteTextViewSearch.GetCompoundDrawables()[2];

        if (rightDrawable == null || e.Event.Action != MotionEventActions.Up)
        {
            e.Handled = false;

            return;
        }

        if (e.Event.GetX() >= _autoCompleteTextViewSearch.Width - _autoCompleteTextViewSearch.TotalPaddingRight)
        {
            // Invoke your desired action here.

            e.Handled = true;
        }

        // Forward the event along to the sender (crucial for default behaviour)
        (sender as AutoCompleteTextView)?.OnTouchEvent(e.Event);
    }

टच इवेंट की सदस्यता लें:

_autoCompleteTextViewSearch.Touch += OnEditTextTouch;

2

यह सब बहुत अच्छा है लेकिन इसे वास्तव में सरल बनाने के लिए क्यों नहीं?

मैंने बहुत समय पहले भी इसका सामना किया था ... और एंड्रॉइड टचलिस्टर महान काम करता है लेकिन उपयोग में सीमा देता है..और मैं एक और समाधान के लिए आया था और मुझे आशा है कि आपकी मदद करेगा "

    <LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/zero_row">
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="wrap_content"
            android:layout_height="match_parent">
            <ProgressBar
                android:id="@+id/loadingProgressBar"
                android:layout_gravity="center"
                android:layout_width="28dp"
                android:layout_height="28dp" />
        </LinearLayout>
        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:background="@drawable/edittext_round_corners"
            android:layout_height="match_parent"
            android:layout_marginLeft="5dp">
            <ImageView
                android:layout_width="28dp"
                android:layout_height="28dp"
                app:srcCompat="@android:drawable/ic_menu_search"
                android:id="@+id/imageView2"
                android:layout_weight="0.15"
                android:layout_gravity="center|right"
                android:onClick="OnDatabaseSearchEvent" />
            <EditText
                android:minHeight="40dp"
                android:layout_marginLeft="10dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/edittext_round_corners"
                android:inputType="textPersonName"
                android:hint="Search.."
                android:textColorHint="@color/AndroidWhite"
                android:textColor="@color/AndroidWhite"
                android:ems="10"
                android:id="@+id/e_d_search"
                android:textCursorDrawable="@color/AndroidWhite"
                android:layout_weight="1" />
            <ImageView
                android:layout_width="28dp"
                android:layout_height="28dp"
                app:srcCompat="@drawable/ic_oculi_remove2"
                android:id="@+id/imageView3"
                android:layout_gravity="center|left"
                android:layout_weight="0.15"
                android:onClick="onSearchEditTextCancel" />
        </LinearLayout>

        <!--android:drawableLeft="@android:drawable/ic_menu_search"-->
        <!--android:drawableRight="@drawable/ic_oculi_remove2"-->

    </LinearLayout>

</LinearLayout>

यहां छवि विवरण दर्ज करें अब आप ImageClick श्रोता या ईवेंट बना सकते हैं और वह कर सकते हैं जो आप पाठ के साथ चाहते हैं। यह edittext_round_corners.xml फ़ाइल

<item android:state_pressed="false" android:state_focused="false">
    <shape>
        <gradient
            android:centerY="0.2"
            android:startColor="@color/colorAccent"
            android:centerColor="@color/colorAccent"
            android:endColor="@color/colorAccent"
            android:angle="270"
            />
        <stroke
            android:width="0.7dp"
            android:color="@color/colorAccent" />
        <corners
            android:radius="5dp" />
    </shape>
</item>


इस दृष्टिकोण के साथ समस्या यह है कि जैसे ही आप EditText पर पाठ का आकार बदलना शुरू करते हैं, वह अलग हो जाता है। आप सोच सकते हैं कि यह सिर्फ डेवलपर के पक्ष में है, लेकिन जहां तक ​​उपकरणों की सेटिंग में टेक्स्ट का आकार नहीं है। आप EditText पर sp के बजाय dp का उपयोग करके इससे बच सकते हैं लेकिन यह सिर्फ चीजों को बदतर बनाता है। अन्य समस्याएं मल्टीलाइन एडिटेक्स को संभालने जैसी चीजें हैं।
सोती

मैंने कभी भी मल्टी-लाइन खोज के लिए उपयोग नहीं किया है, इसलिए क्षमा करें मैंने कभी नहीं सोचा था कि यह समस्या दिखाई दे सकती है। संभवतः मल्टी लाइन के लिए अवरुद्ध करने में मदद मिलेगी। क्या आप ऐप का स्क्रीनशॉट संलग्न कर सकते हैं या देख सकते हैं कि क्या होता है? और मैं इसे हल करने की कोशिश करूंगा और हो सकता है कि आप (इस कोड को ठीक करने में) और मुझे भविष्य में उपयोग के लिए। धन्यवाद।
Jevgenij Kononov

इसे दोहराने में बहुत आसान है, यह लेआउट पूर्वावलोकन पर भी होता है जैसे ही आप 2 लाइनें जोड़ते हैं।
सोती 12

के लिए एक पृष्ठभूमि EditTextहोनी चाहिए android:background="@android:color/transparent"
कूलमाइंड

1

एडिट टेक्स्ट के राइट पर ImageButton होना बेहतर है और एडिट टेक्स्ट के साथ ओवरलैप करने के लिए नेगेटिव लेआउट मार्जिन दें। ImageButton पर श्रोता सेट करें और ऑपरेशन करें।


1
@Override
    public boolean onTouch(View v, MotionEvent event) {

        Drawable drawableObj = getResources().getDrawable(R.drawable.search_btn);
        int drawableWidth = drawableObj.getIntrinsicWidth();

        int x = (int) event.getX();
        int y = (int) event.getY();

        if (event != null && event.getAction() == MotionEvent.ACTION_UP) {
            if (x >= (searchPanel_search.getWidth() - drawableWidth - searchPanel_search.getPaddingRight())
                    && x <= (searchPanel_search.getWidth() - searchPanel_search.getPaddingRight())

                    && y >= searchPanel_search.getPaddingTop() && y <= (searchPanel_search.getHeight() - searchPanel_search.getPaddingBottom())) {

                getSearchData();
            }

            else {
                InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                imm.showSoftInput(searchPanel_search, InputMethodManager.SHOW_FORCED);
            }
        }
        return super.onTouchEvent(event);

    }

1
<FrameLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="5dp" >

            <EditText
                android:id="@+id/edt_status_text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="10dp"
                android:background="@drawable/txt_box_blank"
                android:ems="10"
                android:hint="@string/statusnote"
                android:paddingLeft="5dp"
                android:paddingRight="10dp"
                android:textColor="@android:color/black" />

            <Button
                android:id="@+id/note_del"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="right"
                android:layout_marginRight="1dp"
                android:layout_marginTop="5dp"
                android:background="@android:drawable/ic_delete" />
        </FrameLayout>

इस दृष्टिकोण के साथ समस्या यह है कि जैसे ही आप EditText पर पाठ का आकार बदलना शुरू करते हैं, वह अलग हो जाता है। आप सोच सकते हैं कि यह सिर्फ डेवलपर के पक्ष में है, लेकिन जहां तक ​​उपकरणों की सेटिंग में टेक्स्ट का आकार नहीं है। आप EditText पर sp के बजाय dp का उपयोग करके इससे बच सकते हैं, लेकिन यह सिर्फ चीजों को बदतर बनाता है। अन्य समस्याएं मल्टीलाइन एडिटेक्स को संभालने जैसी चीजें हैं
सूटी

1

बाएं क्लिक करने योग्य क्लिक श्रोता के लिए

txt.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            final int DRAWABLE_LEFT = 0;

            if (event.getAction() == MotionEvent.ACTION_UP) {
                if (event.getRawX() <= (txt
                        .getCompoundDrawables()[DRAWABLE_LEFT].getBounds().width() +
                        txt.getPaddingLeft() +
                        txt.getLeft())) {

                          //TODO do code here
                    }
                    return true;
                }
            }
            return false;
        }
    });

यह सापेक्ष स्थिति "getRight" के साथ पूर्ण स्थान "getRawX" को मिला रहा है। यदि आप EditText पर दायाँ या बायाँ मार्जिन सेट करते हैं, तो आप देखेंगे कि यह कैसे टूटता है क्योंकि क्लिक गलत निर्देशांक पर चालू हो जाता है।
सोती

1

कंपाउंड ड्रॉइंग को क्लिक करने योग्य नहीं माना जाता है। यह एक क्षैतिज रेखीय लयआउट में अलग-अलग दृश्यों का उपयोग करने और उन पर एक क्लिक हैंडलर का उपयोग करने के लिए क्लीनर है।

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="15dp"
        android:background="@color/white"
        android:layout_marginLeft="20dp"
        android:layout_marginStart="20dp"
        android:layout_marginRight="20dp"
        android:layout_marginEnd="20dp"
        android:layout_gravity="center_horizontal"
        android:orientation="horizontal"
        android:translationZ="4dp">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="@color/white"
            android:minWidth="40dp"
            android:scaleType="center"
            app:srcCompat="@drawable/ic_search_map"/>

        <android.support.design.widget.TextInputEditText
            android:id="@+id/search_edit"
            style="@style/EditText.Registration.Map"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:hint="@string/hint_location_search"
            android:imeOptions="actionSearch"
            android:inputType="textPostalAddress"
            android:maxLines="1"
            android:minHeight="40dp" />

        <ImageView
            android:id="@+id/location_gps_refresh"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:background="@color/white"
            android:minWidth="40dp"
            android:scaleType="center"
            app:srcCompat="@drawable/selector_ic_gps"/>
</LinearLayout>

इस दृष्टिकोण के साथ समस्या यह है कि जैसे ही आप EditText पर पाठ का आकार बदलना शुरू करते हैं, वह अलग हो जाता है। आप सोच सकते हैं कि यह सिर्फ डेवलपर के पक्ष में है, लेकिन जहां तक ​​उपकरणों की सेटिंग में टेक्स्ट का आकार नहीं है। आप EditText पर sp के बजाय dp का उपयोग करके इससे बच सकते हैं, लेकिन यह सिर्फ चीजों को बदतर बनाता है। अन्य समस्याएं मल्टीलाइन एडिटेक्स को संभालने जैसी चीजें हैं।
सोती

1

जो कोई भी राक्षसी क्लिक हैंडलिंग को लागू नहीं करना चाहता है। आप एक के साथ एक ही प्राप्त कर सकते हैं RelativeLayout। इसके साथ ही आपके पास ड्रॉबल की स्थिति से मुक्त हैंडलिंग भी है।

  <RelativeLayout
     android:layout_width="match_parent"
     android:layout_height="wrap_content">

   <android.support.design.widget.TextInputLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content">

     <android.support.design.widget.TextInputEditText
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
      />
     </android.support.design.widget.TextInputLayout>
     <ImageView
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignParentEnd="true"
       android:layout_centerInParent="true"
       android:src="@drawable/ic_undo"/>
    </RelativeLayout>

ImageViewस्थिति के रूप में आप का प्रयोग करेंगे ही होगा drawableEnd- प्लस आप सभी स्पर्श श्रोता से निपटने की जरूरत नहीं है। बस एक क्लिक श्रोता ImageViewऔर आप जाने के लिए अच्छे हैं।


इस दृष्टिकोण के साथ समस्या यह है कि जैसे ही आप EditText पर पाठ का आकार बदलना शुरू करते हैं, वह अलग हो जाता है। आप सोच सकते हैं कि यह सिर्फ डेवलपर के पक्ष में है, लेकिन जहां तक ​​उपकरणों की सेटिंग में टेक्स्ट का आकार नहीं है। आप EditText पर sp के बजाय dp का उपयोग करके इससे बच सकते हैं, लेकिन यह सिर्फ चीजों को बदतर बनाता है। अन्य समस्याएं मल्टीलाइन एडिटेक्स को संभालने जैसी चीजें हैं
सूटी

1

यह मुझे काम करता है :) यह आपकी मदद भी कर सकता है

edit_account_name.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            if (event.getAction() == MotionEvent.ACTION_DOWN) {
                if (event.getRawX() >= (edit_account_name.getRight())) {
                    //clicked
                   return true;
                }
            }
            return false;
        }
    });

यह सापेक्ष स्थिति "getRight" के साथ पूर्ण स्थान "getRawX" को मिला रहा है। यदि आप EditText पर दायाँ या बायाँ मार्जिन सेट करते हैं, तो आप देखेंगे कि यह कैसे टूटता है क्योंकि क्लिक गलत निर्देशांक पर चालू हो जाता है।
सोती

मैंने संपादित पाठ पर सही मार्जिन जोड़ा है, मेरा कोड अभी भी सही काम करता है
zhahaib khaliq

1

मैंने कई समाधान देखे हैं, लेकिन मैं उनमें से किसी से भी सहमत नहीं था। या तो बहुत जटिल या बहुत सरल (गैर-पुन: प्रयोज्य)।

यह इस समय मेरा पसंदीदा तरीका है:

mEditText.setOnTouchListener(
        new OnEditTextRightDrawableTouchListener(mEditText) {
          @Override
          public void OnDrawableClick() {
            // The right drawable was clicked. Your action goes here.
          }
        });

और यह पुन: प्रयोज्य स्पर्श श्रोता है:

import android.graphics.drawable.Drawable;
import android.support.annotation.NonNull;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.EditText;

public abstract class OnEditTextRightDrawableTouchListener implements OnTouchListener {

  private final EditText mEditText;

  public OnEditTextRightDrawableTouchListener(@NonNull final EditText editText) {
    mEditText = editText;
  }

  @Override
  public boolean onTouch(View view, MotionEvent motionEvent) {
    if (motionEvent.getAction() == MotionEvent.ACTION_UP) {
      final int DRAWABLE_RIGHT_POSITION = 2;
      final Drawable drawable = mEditText.getCompoundDrawables()[DRAWABLE_RIGHT_POSITION];
      if (drawable != null) {
        final float touchEventX = motionEvent.getX();
        final int touchAreaRight = mEditText.getRight();
        final int touchAreaLeft = touchAreaRight - drawable.getBounds().width();
        if (touchEventX >= touchAreaLeft && touchEventX <= touchAreaRight) {
          view.performClick();
          OnDrawableClick();
        }
        return true;
      }
    }
    return false;
  }

  public abstract void OnDrawableClick();
}

आप यहाँ Gist को देख सकते हैं।


1

ड्रा करने योग्य दाएं, बाएं, ऊपर, नीचे क्लिक के लिए नीचे दिए गए कोड का पालन करें:

edittextview_confirmpassword.setOnTouchListener(new View.OnTouchListener() {
    @Override        public boolean onTouch(View v, MotionEvent event) {
        final int DRAWABLE_LEFT = 0;
        final int DRAWABLE_TOP = 1;
        final int DRAWABLE_RIGHT = 2;
        final int DRAWABLE_BOTTOM = 3;

        if(event.getAction() == MotionEvent.ACTION_UP) {
            if(event.getRawX() >= (edittextview_confirmpassword.getRight() - edittextview_confirmpassword.getCompoundDrawables()[DRAWABLE_RIGHT].getBounds().width())) {
                // your action here                    edittextview_confirmpassword.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
                return true;
            }
        }else{
            edittextview_confirmpassword.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);

        }
        return false;
    }
});

}


1

मैंने कोटलिन में लागू किया है

edPassword.setOnTouchListener { _, event ->
            val DRAWABLE_RIGHT = 2
            val DRAWABLE_LEFT = 0
            val DRAWABLE_TOP = 1
            val DRAWABLE_BOTTOM = 3
            if (event.action == MotionEvent.ACTION_UP) {
                if (event.rawX >= (edPassword.right - edPassword.compoundDrawables[DRAWABLE_RIGHT].bounds.width())) {
                    edPassword.setText("")
                    true
                }
            }
            false
        }

0

यहाँ मेरी सरल उपाय है, बस जगह ImageButtonसे अधिक EditText:

<RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content">

  <EditText android:id="@+id/editTextName"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:imeOptions="actionSearch"
    android:inputType="text"/>

  <ImageButton android:id="@+id/imageViewSearch"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_action_search"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"/>

</RelativeLayout>

0

मैं ड्रॉबल लेफ्ट के लिए एक रास्ता सुझाना चाहता हूँ! मैंने इस कोड और काम की कोशिश की।

txtsearch.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View view, MotionEvent event) {
            final int DRAWABLE_LEFT = 0;
            int start=txtsearch.getSelectionStart();
            int end=txtsearch.getSelectionEnd();
            if(event.getAction() == MotionEvent.ACTION_UP) {
                if(event.getRawX() <= (txtsearch.getLeft() + txtsearch.getCompoundDrawables()[DRAWABLE_LEFT].getBounds().width())) {
                    //Do your action here
                    return true;
                }

            }
            return false;
        }
    });
}

यह सापेक्ष स्थिति "getRight" के साथ पूर्ण स्थान "getRawX" को मिला रहा है। यदि आप EditText पर दायाँ या बायाँ मार्जिन सेट करते हैं, तो आप देखेंगे कि यह कैसे टूटता है क्योंकि क्लिक गलत निर्देशांक पर चालू हो जाता है।
सोती

0

मैंने Mono.Droid (Xamarin) में @aristo_sh उत्तर को लागू किया, क्योंकि यह एक प्रतिनिधि अनाम विधि है जिससे आप सही या गलत नहीं लौटा सकते। आपको e.Event.Handled लेना होगा। मैं भी क्लिक पर कीबोर्ड छुपा रहा हूं

editText.Touch += (sender, e) => {
                    e.Handled = false;
                    if (e.Event.Action == MotionEventActions.Up)
                    {
                        if (e.Event.RawX >= (bibEditText.Right - (bibEditText.GetCompoundDrawables()[2]).Bounds.Width()))
                        {
                            SearchRunner();
                            InputMethodManager manager = (InputMethodManager)GetSystemService(InputMethodService);
                            manager.HideSoftInputFromWindow(editText.WindowToken, 0);
                            e.Handled = true;
                        }
                    }
                };

0

TextView कंपाउंड ड्रॉबल क्लिक और टच ईवेंट्स को हैंडल करने के लिए मेरे सामान्यीकृत समाधान को साझा करना।

पहले हमें एक टच इवेंट हैंडलर की आवश्यकता है:

/**
 * Handles compound drawable touch events.
 * Will intercept every event that happened inside (calculated) compound drawable bounds, extended by fuzz.
 * @see TextView#getCompoundDrawables()
 * @see TextView#setCompoundDrawablesRelativeWithIntrinsicBounds(int, int, int, int)
 */
public abstract class CompoundDrawableTouchListener implements View.OnTouchListener {

    private final String LOG_TAG = "CmpDrawableTouch";

    private final int fuzz;

    public static final int LEFT = 0;
    public static final int TOP = 1;
    public static final int RIGHT = 2;
    public static final int BOTTOM = 3;
    private static final int[] DRAWABLE_INDEXES = {LEFT, TOP, RIGHT, BOTTOM};

    /**
     * Default constructor
     */
    public CompoundDrawableTouchListener() {
        this(0);
    }

    /**
     * Constructor with fuzz
     * @param fuzz desired fuzz in px
     */
    public CompoundDrawableTouchListener(int fuzz) {
        this.fuzz = fuzz;
    }

    @Override
    public boolean onTouch(View view, MotionEvent event) {
        if (!(view instanceof TextView)) {
            Log.e(LOG_TAG, "attached view is not instance of TextView");
            return false;
        }

        TextView textView = (TextView) view;
        Drawable[] drawables = textView.getCompoundDrawables();
        int x = (int) event.getX();
        int y = (int) event.getY();

        for (int i : DRAWABLE_INDEXES) {
            if (drawables[i] == null) continue;
            Rect bounds = getRelativeBounds(i, drawables[i], textView);
            Rect fuzzedBounds = addFuzz(bounds);

            if (fuzzedBounds.contains(x, y)) {
                MotionEvent relativeEvent = MotionEvent.obtain(
                    event.getDownTime(),
                    event.getEventTime(),
                    event.getAction(),
                    event.getX() - bounds.left,
                    event.getY() - bounds.top,
                    event.getMetaState());
                return onDrawableTouch(view, i, bounds, relativeEvent);
            }
        }

        return false;
    }

    /**
     * Calculates compound drawable bounds relative to wrapping view
     * @param index compound drawable index
     * @param drawable the drawable
     * @param view wrapping view
     * @return {@link Rect} with relative bounds
     */
    private Rect getRelativeBounds(int index, @NonNull Drawable drawable, View view) {
        Rect drawableBounds = drawable.getBounds();
        Rect bounds = new Rect();

        switch (index) {
            case LEFT:
                bounds.offsetTo(view.getPaddingLeft(),
                    view.getHeight() / 2 - bounds.height() / 2);
                break;

            case TOP:
                bounds.offsetTo(view.getWidth() / 2 - bounds.width() / 2,
                    view.getPaddingTop());
                break;

            case RIGHT:
                bounds.offsetTo(view.getWidth() - view.getPaddingRight() - bounds.width(),
                    view.getHeight() / 2 - bounds.height() / 2);
                break;

            case BOTTOM:
                bounds.offsetTo(view.getWidth() / 2 - bounds.width() / 2,
                    view.getHeight() - view.getPaddingBottom() - bounds.height());
                break;
        }

        return bounds;
    }

    /**
     * Expands {@link Rect} by given value in every direction relative to its center
     * @param source given {@link Rect}
     * @return result {@link Rect}
     */
    private Rect addFuzz(Rect source) {
        Rect result = new Rect();
        result.left = source.left - fuzz;
        result.right = source.right + fuzz;
        result.top = source.top - fuzz;
        result.bottom = source.bottom + fuzz;
        return result;
    }

    /**
     * Compound drawable touch-event handler
     * @param v wrapping view
     * @param drawableIndex index of compound drawable which recicved the event
     * @param drawableBounds {@link Rect} with compound drawable bounds relative to wrapping view.
     * Fuzz not included
     * @param event event with coordinated relative to wrapping view - i.e. within {@code drawableBounds}.
     * If using fuzz, may return negative coordinates.
     */
    protected abstract boolean onDrawableTouch(View v, int drawableIndex, Rect drawableBounds, MotionEvent event);
}

अब आप इस तरह से किसी भी TextView के किसी भी यौगिक पर किसी भी स्पर्श की घटनाओं को संसाधित कर सकते हैं:

textView1.setOnTouchListener(new CompoundDrawableTouchListener() {
            @Override
            protected void onDrawableTouch(View v, int drawableIndex, Rect drawableBounds, MotionEvent event) {
                switch(v.getId()) {
                    case R.id.textView1:
                        switch(drawableIndex) {
                            case CompoundDrawableTouchListener.RIGHT:
                                doStuff();
                                break;
                        }
                        break;
                }
            }
        });

केवल क्लिक में रुचि है? केवल MotionEvent एक्शन द्वारा फ़िल्टर करें:

/**
 * Handles compound drawable click events.
 * @see TextView#getCompoundDrawables()
 * @see TextView#setCompoundDrawablesRelativeWithIntrinsicBounds(int, int, int, int)
 * @see CompoundDrawableTouchListener
 */
public abstract class CompoundDrawableClickListener extends CompoundDrawableTouchListener {

    /**
     * Default constructor
     */
    public CompoundDrawableClickListener() {
        super();
    }

     /**
     * Constructor with fuzz
     * @param fuzz desired fuzz in px
     */
    public CompoundDrawableClickListener(int fuzz) {
        super(fuzz);
    }

    @Override
    protected void onDrawableTouch(View v, int drawableIndex, Rect drawableBounds, MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_UP) onDrawableClick(v, drawableIndex);
        return true;
    }

    /**
     * Compound drawable touch-event handler
     * @param v wrapping view
     * @param drawableIndex index of compound drawable which recicved the event
     */
    protected abstract void onDrawableClick(View v, int drawableIndex);
}

फिर से हम आसानी से किसी भी TextView के किसी भी यौगिक पर क्लिक को आसानी से संभाल सकते हैं:

textView1.setOnTouchListener(new CompoundDrawableClickListener() {
            @Override
            protected void onDrawableClick(View v, int drawableIndex) {
                switch(v.getId()) {
                    case R.id.textView1:
                        switch(drawableIndex) {
                            case CompoundDrawableTouchListener.RIGHT:
                                doStuff();
                                break;
                        }
                        break;
                }
            }
        });

आशा है कि आपने मुझे पसंद किया होगा। अगर कुछ भी बदलता है तो मैं इसे यहां और संबंधित gist में अपडेट रखने की कोशिश करूंगा ।


0

मैंने एक कस्टम EditText के बजाय एक साधारण कस्टम टच श्रोता वर्ग बनाया है

public class MyTouchListener implements View.OnTouchListener {
private EditText editText;

public MyTouchListener(EditText editText) {
    this.editText = editText;

    setupDrawable(this.editText);
}

private void setupDrawable(final EditText editText) {
    editText.addTextChangedListener(new TextWatcher() {
        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {

        }

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {
            if(s.length()>0)
                editText.setCompoundDrawablesWithIntrinsicBounds(0,0, R.drawable.clearicon,0);
            else
                editText.setCompoundDrawablesWithIntrinsicBounds(0,0, 0,0);

        }

        @Override
        public void afterTextChanged(Editable s) {

        }
    });
}

@Override
public boolean onTouch(View v, MotionEvent event) {
    if(event.getAction() == MotionEvent.ACTION_UP) {
        if(editText.getCompoundDrawables()[2]!=null){
            if(event.getX() >= (editText.getRight()- editText.getLeft() - editText.getCompoundDrawables()[2].getBounds().width())) {
                editText.setText("");
            }
        }
    }
    return false;

}

}

जब EditText खाली होगा तो कोई ड्रा करने योग्य नहीं होगा। जब हम एडिटटेक्स्ट को क्लियर करने के लिए एडिट करना शुरू करेंगे तो एक ड्रॉबल दिखाएगा।

आप बस स्पर्श श्रोता सेट कर सकते हैं

mEditText.setOnTouchListener (नया MyTouchListener (mEditText));


यह थोड़ा भ्रमित करने वाला है कि एस टचलाइटर ड्रिबल विजिबिलिटी और स्पष्ट एक्शन को खुद ही संभाल रहा है। यह एक स्पर्श श्रोता जिम्मेदारी नहीं है और वर्ग का नाम भ्रामक है। साथ ही साथ आप गणना कर रहे हैं कि समीकरण से मार्जिन हटाने के लिए रिश्तेदार पदों की आवश्यकता नहीं है। getRight - चौड़ाई यह करेगी।
सोती
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.