Android EditText prohibit copy and paste full code

Source: Internet
Author: User

<!--defining the base layout linearlayout -<LinearLayoutxmlns:android= "Http://schemas.android.com/apk/res/android"Xmlns:tools= "Http://schemas.android.com/tools"Android:layout_width= "Match_parent"Android:layout_height= "Match_parent"Android:paddingbottom= "@dimen/activity_vertical_margin"Android:paddingleft= "@dimen/activity_horizontal_margin"Android:paddingright= "@dimen/activity_horizontal_margin"Android:paddingtop= "@dimen/activity_vertical_margin"android:orientation= "vertical">    <!--Defining TextView Controls -    <EditTextAndroid:id= "@+id/et"Android:layout_width= "Match_parent"Android:layout_height= "Wrap_content"Android:text= "Prohibit copy and paste"android:longclickable= "false"        /></LinearLayout>
 Packagecom.example.yanlei.yl2;ImportAndroid.content.ClipboardManager;ImportAndroid.os.Bundle;Importandroid.support.v7.app.AppCompatActivity;ImportAndroid.view.ActionMode;ImportAndroid.view.Menu;ImportAndroid.view.MenuItem;ImportAndroid.widget.EditText; Public classMainactivityextendsappcompatactivity {EditText Et; @Overrideprotected voidonCreate (Bundle savedinstancestate) {Super. OnCreate (Savedinstancestate);//call the OnCreate method of the parent class//set the current page's layout file to Activity_main by using the Setcontentview methodSetcontentview (R.layout.activity_main); Et=(EditText) Findviewbyid (r.id.et); Et.setcustomselectionactionmodecallback (NewActionmode.callback () {@Override Public BooleanOnprepareactionmode (actionmode Mode, menu menu) {return false; } @Override Public voidOndestroyactionmode (Actionmode mode) {} @Override Public BooleanOncreateactionmode (actionmode Mode, menu menu) {return false; } @Override Public Booleanonactionitemclicked (actionmode mode, MenuItem item) {return false;    }        }); }}

Android EditText prohibit copy and paste full code

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.