How to Remove Request Focus from EditText?

android, android-edittext

Solution

do it this way

lUserNameEditText.clearFocus();

another way which works for me regarding the border is

lUserNameEditText.setBackgroundColor(0); 

Problem

I want to remove the blue line from edittext when i touched edittext it appear but i dont know how to remove it. see the picture for more understanding

Original source