AnkitRox
AnkitRox

Reputation: 544

Remove highlighting box from edit field

I am using edit field to enter some text. When I click on edit field, one Highlighting box is showing as in image. I want to hide that box. Please catch the problem using below image:

enter image description here

How to remove this focused box in edit field??

Upvotes: 0

Views: 208

Answers (1)

Arun Kumar Munusamy
Arun Kumar Munusamy

Reputation: 871

As it's Edit Field, its default nature is to highlight text for editing. If you are going to enter values in the field during application runtime means you have to bare this. If you are going to enter values programatically means use Rich Text Field or your

editfield.setEditable(false);

Upvotes: 1

Related Questions