Cómo deshabilitar pegar en onClickListener para el derecho Drawable de un Android EditText (dentro del icono EditText)

yo tengoEditText e ícono dentro de él

<EditText
    android:id="@+id/myedittext"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:drawableRight="@mipmap/microphone"/>

Lo puseonClickListener Para elDrawable derecho de unEditText

myeditText.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() >= (myeditText.getRight() - myeditText
      .getCompoundDrawables()[DRAWABLE_RIGHT].getBounds().width())) {  
                    // your action here
                    Toast.makeText(getApplicationContext(),
                            "speak",Toast.LENGTH_SHORT).show();
                    return true;
                }
            }
            return false;
        }
    });

cuando hago clic en el icono a la derecha deEditText Brindis muéstrame y trabaja, pero muéstrame la opción pegar enEditText también. ¿Cómo puedo eliminar pegar cuando se hace clic con el botón derecho en el icono?

Respuestas a la pregunta(4)

Su respuesta a la pregunta