android:cursor - Make the Cursor Invisible in a TextView

How to Make the Cursor Invisible in a TextView

android:cursor was added in API Level 1

Makes the cursor visible (the default) or invisible. Note that this property only makes sense for editable TextView.
Aka, How to hide the cursor

1. Add a TextView.

2. In the main.xml file, add the below line

  <TextView
    ....
      android:cursor = "false" 
  />
 
3. Compile and run!

Resources: