![]() |
In Android, EditText is used to let users type in text that can be numbers, characters, strings, or a paragraph. Data from EditText can be fetched and used to perform desired operations. As the primary input of an EditText is text, it can be manually typed or copied from another source and simply be pasted into it. Similarly, a text in EditText can be copied and used in other apps. So in this article, we will show you how you could disable the copy functionality in EditText in Android. Follow the below steps once the IDE is ready. Step by Step ImplementationStep 1: Create a New Project in Android Studio To create a new project in Android Studio please refer to How to Create/Start a New Project in Android Studio. We demonstrated the application in Kotlin, so make sure you select Kotlin as the primary language while creating a New Project. Step 2: Working with the activity_main.xml file Navigate to the app > res > layout > activity_main.xml and add the below code to that file. Below is the code for the activity_main.xml file. Add an EditText as shown below. XML
Step 3: Working with the MainActivity.kt file Go to the MainActivity.kt file and refer to the following code. Below is the code for the MainActivity.kt file. Comments are added inside the code to understand the code in more detail. Kotlin
Output: You can see that we are unable to select the text in the EditText. this prevents it from being copied. |
Reffered: https://www.geeksforgeeks.org
Android |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 13 |