कॉपी / पेस्ट को / से EditText में कैसे निष्क्रिय करें


131

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

 OnLongClickListener mOnLongClickListener = new OnLongClickListener() {

        @Override
        public boolean onLongClick(View v) {
            // prevent context menu from being popped up, so that user
            // cannot copy/paste from/into any EditText fields.
            return true;
        }
    };

लेकिन समस्या तब पैदा होती है जब उपयोगकर्ता ने एंड्रॉइड डिफ़ॉल्ट के अलावा किसी तीसरे पक्ष के कीबोर्ड को सक्षम किया है, जिसमें कॉपी / पेस्ट करने के लिए एक बटन हो सकता है या जो एक ही संदर्भ मेनू दिखा सकता है। तो मैं उस परिदृश्य में कॉपी / पेस्ट कैसे निष्क्रिय करूं?

कृपया मुझे बताएं कि क्या कॉपी / पेस्ट करने के अन्य तरीके भी हैं। (और संभवतः उन्हें अक्षम कैसे करें)

किसी भी सहायता की सराहना की जाएगी।


यदि "पेस्ट" ऑपरेशन एक आईएमई से आता है, तो आपके पास इसे सामान्य कीस्ट्रोक्स से अलग करने का कोई मानक तरीका नहीं है। कोशिश करने का एक विचार प्रत्येक चरित्र के आगमन के बीच के समय को मापना है और यदि समय बहुत कम है, तो वर्ण "पेस्ट" ऑपरेशन से आ रहे हैं।
बिटबैंक

गंदे घोल लगता है! हालांकि एक नज़र के लायक।
8

1
android का उपयोग करें: longClickable = "false"
Azay Gupta

जवाबों:


112

यदि आप एपीआई स्तर 11 या इसके बाद के संस्करण का उपयोग कर रहे हैं तो आप कॉपी, पेस्ट, कट और कस्टम संदर्भ मेनू को प्रदर्शित होने से रोक सकते हैं।

edittext.setCustomSelectionActionModeCallback(new ActionMode.Callback() {

            public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
                return false;
            }

            public void onDestroyActionMode(ActionMode mode) {                  
            }

            public boolean onCreateActionMode(ActionMode mode, Menu menu) {
                return false;
            }

            public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
                return false;
            }
        });

OnCreateActionMode (ActionMode, Menu) से गलत रिटर्न करने पर एक्शन मोड शुरू होने से बच जाएगा (ऑल, कट, कॉपी और पेस्ट एक्शन सेलेक्ट करें)।


1
13 से नीचे के एपीआई स्तर के बारे में क्या?
जोनाथन

1
या तो टिप्पणियों को समझ में नहीं आता है, यह नमूना api11 + पर काम करता है, पूर्व-एपी
scottyab

28
मेरे लिए काम नहीं कर रहा हूँ। पेस्ट बटन नीले कर्सर संकेतक पर टैप करने के मामले में दिखाई देगा।
शून्य

8
मेरे लिए भी काम नहीं कर रहा। डबल-टैप करने पर कॉपी-पेस्ट का मेनू दिखाई दे रहा है।
एंड्रॉइड किलर

यह एंड्रॉइड 6.0 पर अब काम नहीं कर रहा है, इस उत्तर को देखें stackoverflow.com/questions/27869983/…
has19

132

उपयोग करने के लिए सबसे अच्छी विधि है:

etUsername.setLongClickable(false);

58
या, बस xml में android:longClickable="false":)
lomza

19
पेस्ट बटन नीले कर्सर संकेतक पर टैप करने के मामले में दिखाई देगा।
शून्य

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

1
इसके अलावा, कीबोर्ड शॉर्टकट अभी भी काम कर सकते हैं (Ctrl + C) w / बाहरी कीबोर्ड।
ओलेग वास्केविच

यह आइसक्रीम सैंडविच पर काम नहीं करता है क्योंकि क्लिपबोर्ड विकल्प डबल टैपिंग टेक्स्ट द्वारा खोले जा सकते हैं, साथ ही लंबे टैपिंग भी।
पॉल विंट्ज़

44

आप इसे EditText के लंबे प्रेस को अक्षम करके कर सकते हैं

इसे लागू करने के लिए, बस निम्नलिखित लाइन को xml में जोड़ें -

android:longClickable="false"

6
समस्या यह थी कि मेरे ऐप उपयोगकर्ता के पास एक थर्ड पार्टी कीबोर्ड है जिसमें एक कॉपी और पेस्ट बटन है।
rDroid

3
एक और समस्या यह है कि आप टेक्स्ट को डबल टैप करके चुन सकते हैं और यह कॉपी / पेस्ट को फिर से दिखाता है
निकोला

37

मैं निम्नलिखित के साथ कॉपी-और-पेस्ट कार्यक्षमता को अक्षम करने में सक्षम हूं:

textField.setCustomSelectionActionModeCallback(new ActionMode.Callback() {

    public boolean onCreateActionMode(ActionMode actionMode, Menu menu) {
        return false;
    }

    public boolean onPrepareActionMode(ActionMode actionMode, Menu menu) {
        return false;
    }

    public boolean onActionItemClicked(ActionMode actionMode, MenuItem item) {
        return false;
    }

    public void onDestroyActionMode(ActionMode actionMode) {
    }
});

textField.setLongClickable(false);
textField.setTextIsSelectable(false);

आशा है कि यह आप के लिए काम करता है ;-)


यह ठीक वही समाधान है जो मैंने ऊपर दिए गए अन्य उत्तरों के आधार पर समाप्त किया है। यह सही समाधान के रूप में चिह्नित किया जाना चाहिए क्योंकि यह किनारे के मामलों को संभालता है
एंड्रयू Hoefling

2
यह विकल्प कॉपी को ब्लॉक कर देता है लेकिन आप कर्सर पर क्लिक करके पेस्ट कर सकते हैं।
मेहुल कनजरिया

12

यहाँ सभी संस्करण में एडिट टेक्स्ट के कट कॉपी पेस्ट को निष्क्रिय करने का सबसे अच्छा तरीका है

if (android.os.Build.VERSION.SDK_INT < 11) {
        editText.setOnCreateContextMenuListener(new OnCreateContextMenuListener() {

            @Override
            public void onCreateContextMenu(ContextMenu menu, View v,
                    ContextMenuInfo menuInfo) {
                // TODO Auto-generated method stub
                menu.clear();
            }
        });
    } else {
        editText.setCustomSelectionActionModeCallback(new ActionMode.Callback() {

            public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
                // TODO Auto-generated method stub
                return false;
            }

            public void onDestroyActionMode(ActionMode mode) {
                // TODO Auto-generated method stub

            }

            public boolean onCreateActionMode(ActionMode mode, Menu menu) {
                // TODO Auto-generated method stub
                return false;
            }

            public boolean onActionItemClicked(ActionMode mode,
                    MenuItem item) {
                // TODO Auto-generated method stub
                return false;
            }
        });
    }

मेरे लिए काम किया यह, मैं सिर्फ @TargetApi (Build.VERSION_CODES.HONEYCOMB) जोड़ने के लिए किया था
Sheepdogsheep

11

के अलावा setCustomSelectionActionModeCallback , और विकलांग लंबी क्लिक के समाधान, यह करने के लिए आवश्यक है चिपकाएं / रोकने मेनू REPLACE , जब पाठ चयन हैंडल क्लिक किया जाता है प्रदर्शित होने के नीचे दी गई छवि के अनुसार से:

पेस्ट मेनू के साथ पाठ चयन संभाल

समाधान PASTE / REPLACE मेनू show()को (गैर-प्रलेखित) android.widget.Editorवर्ग की विधि में प्रदर्शित होने से रोकने में निहित है । मेनू प्रकट होने से पहले, एक चेक किया जाता है if (!canPaste && !canSuggest) return;। इन चर को सेट करने के लिए आधार के रूप में जिन दो विधियों का उपयोग किया जाता है वे दोनों EditTextवर्ग में हैं:

अधिक पूर्ण उत्तर यहां उपलब्ध है


यह ठीक है और पूरा समाधान
FireZenk

पेस्ट क्लिपबोर्ड विकल्प के बजाय कुछ उपकरणों में विकल्प दिखाई देता है, केवल पेस्ट के रूप में कार्य करता है। मैं लिंक की जाँच की, लेकिन मैं क्लिपबोर्ड नहीं बल्कि पेस्ट को रोकने में सक्षम हूं। कोई उपाय ?
ऋचा

10

कोटलिन समाधान:

fun TextView.disableCopyPaste() {
    isLongClickable = false
    setTextIsSelectable(false)
    customSelectionActionModeCallback = object : ActionMode.Callback {
        override fun onCreateActionMode(mode: ActionMode?, menu: Menu): Boolean {
            return false
        }

        override fun onPrepareActionMode(mode: ActionMode?, menu: Menu): Boolean {
            return false
        }

        override fun onActionItemClicked(mode: ActionMode?, item: MenuItem): Boolean {
            return false
        }

        override fun onDestroyActionMode(mode: ActionMode?) {}
    }
}

तो आप बस इस विधि को अपने पर कॉल कर सकते हैं TextView:

override fun onCreate() {
    priceEditText.disableCopyPaste()
}

1
नमस्ते, मैं इस दृष्टिकोण का उपयोग कर रहा हूं, लेकिन मुझे इस भाग पर इस Type mismatchविवरण के साथ त्रुटि हो रही है । किसी भी विचार क्यों यह काम नहीं कर सकता है? Required:ActionMode.Callback! Found: object: ActionMode.Callback
अब्दुल मतीन

8

अन्य समाधानों का उपयोग करते हुए, एपीआई 26 (ओरियो) अभी भी दर्ज किए गए पाठ पर एकल टैप द्वारा कर्सर हैंडल दिखा रहा था, और फिर मेनू दिखाया जा सकता है। समाधानों के संयोजन से ही मेरी समस्या हल हो सकती है।

public class CustomEditText extends EditText {

    public CustomEditText(Context context) {
        super(context);
        init();
    }

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

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

    private void init() {
        this.setCustomSelectionActionModeCallback(new BlockedActionModeCallback());
        this.setLongClickable(false);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_DOWN) {
            this.setInsertionDisabled();
        }
        return super.onTouchEvent(event);
    }

    /**
    * This method sets TextView#Editor#mInsertionControllerEnabled field to false
    * to return false from the Editor#hasInsertionController() method to PREVENT showing
    * of the insertionController from EditText
    * The Editor#hasInsertionController() method is called in  Editor#onTouchUpEvent(MotionEvent event) method.
    */
    private void setInsertionDisabled() {
        try {
            Field editorField = TextView.class.getDeclaredField("mEditor");
            editorField.setAccessible(true);
            Object editorObject = editorField.get(this);

            Class editorClass = Class.forName("android.widget.Editor");
            Field mInsertionControllerEnabledField = editorClass.getDeclaredField("mInsertionControllerEnabled");
            mInsertionControllerEnabledField.setAccessible(true);
            mInsertionControllerEnabledField.set(editorObject, false);
        }
        catch (Exception ignored) {
            // ignore exception here
        }
    }

    @Override
    public boolean isSuggestionsEnabled() {
        return false;
    }

    private class BlockedActionModeCallback implements ActionMode.Callback {
        public boolean onCreateActionMode(ActionMode mode, Menu menu) {
            return false;
        }

        public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
            return false;
        }

        public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
            return false;
        }

        public void onDestroyActionMode(ActionMode mode) {
        }
    }
}

5

यदि आप लंबे क्लिक को अक्षम नहीं करना चाहते हैं, क्योंकि आपको लौटना करने की तुलना में लंबी क्लिक पर कुछ कार्यक्षमता प्रदर्शन करने की आवश्यकता है, ऐसा करने के लिए एक बेहतर विकल्प है।

आपका edittext लॉन्ग क्लिक इस तरह होगा।

edittext.setOnLongClickListener(new View.OnLongClickListener() {
      @Override
      public boolean onLongClick(View v) {
            //  Do Something or Don't
            return true;
      }
});

प्रलेखन के अनुसार "ट्रू" लौटना यह दर्शाता है कि लंबे समय तक क्लिक को संभाला गया है, इसलिए डिफ़ॉल्ट संचालन करने की कोई आवश्यकता नहीं है।

मैंने एपीआई स्तर 16, 22 और 25 पर इसका परीक्षण किया। मेरे लिए यह ठीक है। आशा है कि यह मदद करेगा।


1
अच्छा था। वैकल्पिक रूप से, सिर्फ android:longClickable="false"XML में सेट
एलेक्स सेमीनेक

3

https://github.com/neopixl/PixlUIEditText एक विधि प्रदान करता है

myEditText.disableCopyAndPaste()

और यह पुराने एपीआई पर काम करता है


1
यह बिल्कुल वैसा ही है जैसा कि stackoverflow.com/ द्वारा उपलब्ध कराया गया आधा-समाधान / 22756538/3063884 । कोड देखें: github.com/neopixl/PixlUI/blob/master/Library/src/com/neopixl/… ... यह दृष्टिकोण अभी भी पाठ चयन हैंडलर को "PASTE" दिखाने से नहीं रोकता है, अगर क्लिपबोर्ड में पाठ है। ।
CJBS

3

यहां "पेस्ट" पॉपअप को अक्षम करने के लिए एक हैक है। आपको EditTextविधि को ओवरराइड करना होगा :

@Override
public int getSelectionStart() {
    for (StackTraceElement element : Thread.currentThread().getStackTrace()) {
        if (element.getMethodName().equals("canPaste")) {
            return -1;
        }
    }
    return super.getSelectionStart();
}

अन्य कार्यों के लिए भी ऐसा ही किया जा सकता है।


क्या आप क्लिपबोर्ड डिसेबल के लिए बता सकते हैं
ऋचा

3

मैंने इस समाधान का परीक्षण किया है और यह काम करता है

    mSubdomainEditText.setLongClickable(false);
    mSubdomainEditText.setCustomSelectionActionModeCallback(new ActionMode.Callback() {

      public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
        return false;
      }

      public void onDestroyActionMode(ActionMode mode) {
      }

      public boolean onCreateActionMode(ActionMode mode, Menu menu) {
        return false;
      }

      public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
        return false;
      }
    });

1

क्लिपबोर्ड पढ़ें, इनपुट के खिलाफ जांचें और इनपुट "टाइप" होने का समय। यदि क्लिपबोर्ड में एक ही टेक्स्ट है और यह बहुत तेज़ है, तो पेस्ट किए गए इनपुट को हटा दें।


1

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

// A custom TouchListener is being implemented which will clear out the focus 
// and gain the focus for the EditText, in few milliseconds so the selection 
// will be cleared and hence the copy paste option wil not pop up.
// the respective EditText should be set with this listener 
// tmpEditText.setOnTouchListener(new MyTouchListener(tmpEditText, tmpImm));

public class MyTouchListener implements View.OnTouchListener {

    long click = 0;
    EditText mEtView;
    InputMethodManager imm;

    public MyTouchListener(EditText etView, InputMethodManager im) {
        mEtView = etView;
        imm = im;
    }

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

        if (event.getAction() == MotionEvent.ACTION_DOWN) {
            long curr = System.currentTimeMillis();
            if (click !=0 && ( curr - click) < 30) {

                mEtView.setSelected(false);
                new Handler().postDelayed(new Runnable() {
                    @Override
                    public void run() {
                        mEtView.setSelected(true);
                        mEtView.requestFocusFromTouch();
                        imm.showSoftInput(mEtView, InputMethodManager.RESULT_SHOWN);
                    }
                },25);

            return true;
            }
            else {
                if (click == 0)
                    click = curr;
                else
                    click = 0;
                new Handler().postDelayed(new Runnable() {
                    @Override
                    public void run() {
                        mEtView.requestFocusFromTouch();
                        mEtView.requestFocusFromTouch();
                        imm.showSoftInput(mEtView, InputMethodManager.RESULT_SHOWN);
                    }
                },25);
            return true;
            }

        } else if (event.getAction() == MotionEvent.ACTION_MOVE) {
            mEtView.setSelected(false);
            new Handler().postDelayed(new Runnable() {
                @Override
                public void run() {
                    mEtView.setSelected(true);
                    mEtView.requestFocusFromTouch();
                    mEtView.requestFocusFromTouch();
                    imm.showSoftInput(mEtView, InputMethodManager.RESULT_SHOWN);
                }
            },25);
            return true;
        }
        return false;
    }

1

समाधान बहुत सरल है

public class MainActivity extends AppCompatActivity {

EditText et_0;

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

    et_0 = findViewById(R.id.et_0);

    et_0.setCustomSelectionActionModeCallback(new ActionMode.Callback() {
        @Override
        public boolean onCreateActionMode(ActionMode mode, Menu menu) {
            //to keep the text selection capability available ( selection cursor)
            return true;
        }

        @Override
        public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
            //to prevent the menu from appearing
            menu.clear();
            return false;
        }

        @Override
        public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
            return false;
        }

        @Override
        public void onDestroyActionMode(ActionMode mode) {

        }
    });
   }
}

--------> पूर्वावलोकन <---------


1

प्रचलित प्रतिलिपि और पेस्ट करने के लिए निम्नलिखित कस्टोम वर्ग का प्रयास करें Edittext

public class SegoeUiEditText extends AppCompatEditText {
private final Context context;


@Override
public boolean isSuggestionsEnabled() {
    return false;
}
public SegoeUiEditText(Context context) {
    super(context);
    this.context = context;
    init();
}

public SegoeUiEditText(Context context, AttributeSet attrs) {
    super(context, attrs);
    this.context = context;
    init();
}

public SegoeUiEditText(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    this.context = context;
    init();
}


private void setFonts(Context context) {
    this.setTypeface(Typeface.createFromAsset(context.getAssets(), "Fonts/Helvetica-Normal.ttf"));
}

private void init() {

        setTextIsSelectable(false);
        this.setCustomSelectionActionModeCallback(new ActionModeCallbackInterceptor());
        this.setLongClickable(false);

}
@Override
public int getSelectionStart() {

    for (StackTraceElement element : Thread.currentThread().getStackTrace()) {
        if (element.getMethodName().equals("canPaste")) {
            return -1;
        }
    }
    return super.getSelectionStart();
}
/**
 * Prevents the action bar (top horizontal bar with cut, copy, paste, etc.) from appearing
 * by intercepting the callback that would cause it to be created, and returning false.
 */
private class ActionModeCallbackInterceptor implements ActionMode.Callback, android.view.ActionMode.Callback {
    private final String TAG = SegoeUiEditText.class.getSimpleName();

    public boolean onCreateActionMode(ActionMode mode, Menu menu) { return false; }
    public boolean onPrepareActionMode(ActionMode mode, Menu menu) { return false; }
    public boolean onActionItemClicked(ActionMode mode, MenuItem item) { return false; }
    public void onDestroyActionMode(ActionMode mode) {}

    @Override
    public boolean onCreateActionMode(android.view.ActionMode mode, Menu menu) {
        return false;
    }

    @Override
    public boolean onPrepareActionMode(android.view.ActionMode mode, Menu menu) {
        menu.clear();
        return false;
    }

    @Override
    public boolean onActionItemClicked(android.view.ActionMode mode, MenuItem item) {
        return false;
    }

    @Override
    public void onDestroyActionMode(android.view.ActionMode mode) {

    }
}

}


1

क्लिपबोर्ड वाले स्मार्टफोन के लिए, इस तरह से रोकथाम संभव है।

editText.setFilters(new InputFilter[]{new InputFilter() {
        @Override
        public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {
            if (source.length() > 1) {
                return "";
            }  return null;
        }
    }});


0

मैंने पाया कि जब आप अवांछित वर्णों के प्रवेश से बचने के लिए एक इनपुट फ़िल्टर बनाते हैं, तो ऐसे पात्रों को संपादन पाठ में चिपकाने से कोई प्रभाव नहीं पड़ता है। तो इस तरह से मेरी समस्या को हल करता है।



0

मेरे लिए काम करने वाला समाधान कस्टम एडिटेक्स बनाने और निम्नलिखित विधि को ओवरराइड करने के लिए था:

public class MyEditText extends EditText {

private int mPreviousCursorPosition;

@Override
protected void onSelectionChanged(int selStart, int selEnd) {
    CharSequence text = getText();
    if (text != null) {
        if (selStart != selEnd) {
            setSelection(mPreviousCursorPosition, mPreviousCursorPosition);
            return;
        }
    }
    mPreviousCursorPosition = selStart;
    super.onSelectionChanged(selStart, selEnd);
}

}


0

उपयोग करने का प्रयास करें।

myEditext.setCursorVisible(false);

       myEditext.setCustomSelectionActionModeCallback(new ActionMode.Callback() {

        public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
            // TODO Auto-generated method stub
            return false;
        }

        public void onDestroyActionMode(ActionMode mode) {
            // TODO Auto-generated method stub

        }

        public boolean onCreateActionMode(ActionMode mode, Menu menu) {
            // TODO Auto-generated method stub
            return false;
        }

        public boolean onActionItemClicked(ActionMode mode,
                MenuItem item) {
            // TODO Auto-generated method stub
            return false;
        }
    });

0

जो कोटलिन में समाधान की तलाश कर रहा है वह नीचे दिए वर्ग को कस्टम विजेट के रूप में उपयोग करता है और xml में इसका उपयोग करता है।

वर्ग SecureEditText: TextInputEditText {

/** This is a replacement method for the base TextView class' method of the same name. This method
 * is used in hidden class android.widget.Editor to determine whether the PASTE/REPLACE popup
 * appears when triggered from the text insertion handle. Returning false forces this window
 * to never appear.
 * @return false
 */
override fun isSuggestionsEnabled(): Boolean {
    return false
}

override fun getSelectionStart(): Int {
    for (element in Thread.currentThread().stackTrace) {
        if (element.methodName == "canPaste") {
            return -1
        }
    }
    return super.getSelectionStart()
}

public override fun onSelectionChanged(start: Int, end: Int) {

    val text = text
    if (text != null) {
        if (start != text.length || end != text.length) {
            setSelection(text.length, text.length)
            return
        }
    }

    super.onSelectionChanged(start, end)
}

companion object {
    private val EDITTEXT_ATTRIBUTE_COPY_AND_PASTE = "isCopyPasteDisabled"
    private val PACKAGE_NAME = "http://schemas.android.com/apk/res-auto"
}

constructor(context: Context, attrs: AttributeSet) : super(context, attrs) {
    disableCopyAndPaste(context, attrs)
}

/**
 * Disable Copy and Paste functionality on EditText
 *
 * @param context Context object
 * @param attrs   AttributeSet Object
 */
private fun disableCopyAndPaste(context: Context, attrs: AttributeSet) {
    val isDisableCopyAndPaste = attrs.getAttributeBooleanValue(
        PACKAGE_NAME,
        EDITTEXT_ATTRIBUTE_COPY_AND_PASTE, true
    )
    if (isDisableCopyAndPaste && !isInEditMode()) {
        val inputMethodManager =
            context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
        this.setLongClickable(false)
        this.setOnTouchListener(BlockContextMenuTouchListener(inputMethodManager))
    }
}

/**
 * Perform Focus Enabling Task to the widget with the help of handler object
 * with some delay
 * @param inputMethodManager is used to show the key board
 */
private fun performHandlerAction(inputMethodManager: InputMethodManager) {
    val postDelayedIntervalTime: Long = 25
    Handler().postDelayed(Runnable {
        this@SecureEditText.setSelected(true)
        this@SecureEditText.requestFocusFromTouch()
        inputMethodManager.showSoftInput(
            this@SecureEditText,
            InputMethodManager.RESULT_SHOWN
        )
    }, postDelayedIntervalTime)
}

/**
 * Class to Block Context Menu on double Tap
 * A custom TouchListener is being implemented which will clear out the focus
 * and gain the focus for the EditText, in few milliseconds so the selection
 * will be cleared and hence the copy paste option wil not pop up.
 * the respective EditText should be set with this listener
 *
 * @param inputMethodManager is used to show the key board
 */
private inner class BlockContextMenuTouchListener internal constructor(private val inputMethodManager: InputMethodManager) :
    View.OnTouchListener {
    private var lastTapTime: Long = 0
    val TIME_INTERVAL_BETWEEN_DOUBLE_TAP = 30
    override fun onTouch(v: View, event: MotionEvent): Boolean {
        if (event.getAction() === MotionEvent.ACTION_DOWN) {
            val currentTapTime = System.currentTimeMillis()
            if (lastTapTime != 0L && currentTapTime - lastTapTime < TIME_INTERVAL_BETWEEN_DOUBLE_TAP) {
                this@SecureEditText.setSelected(false)
                performHandlerAction(inputMethodManager)
                return true
            } else {
                if (lastTapTime == 0L) {
                    lastTapTime = currentTapTime
                } else {
                    lastTapTime = 0
                }
                performHandlerAction(inputMethodManager)
                return true
            }
        } else if (event.getAction() === MotionEvent.ACTION_MOVE) {
            this@SecureEditText.setSelected(false)
            performHandlerAction(inputMethodManager)
        }
        return false
    }
}

}


0

मैंने कोटलिन भाषा में एक्सटेंशन फंक्शन जोड़ा :

fun EditText.disableTextSelection() {
    this.setCustomSelectionActionModeCallback(object : android.view.ActionMode.Callback {
        override fun onActionItemClicked(mode: android.view.ActionMode?, item: MenuItem?): Boolean {
            return false
        }
        override fun onCreateActionMode(mode: android.view.ActionMode?, menu: Menu?): Boolean {
            return false
        }
        override fun onPrepareActionMode(mode: android.view.ActionMode?, menu: Menu?): Boolean {
            return false
        }
        override fun onDestroyActionMode(mode: android.view.ActionMode?) {
        }
    })
}

आप इसे इस तरह से उपयोग कर सकते हैं:

edit_text.disableTextSelection()

आपके xml में पंक्ति के नीचे भी जोड़ा गया है:

                android:longClickable="false"
                android:textIsSelectable="false"
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.